W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <body> <h1>JavaScript 对象构造器</h1> <p id="demo"></p> <script> // Person 对象的构造器函数 function Person(first, last, age, eye) { this.firstName = first; this.lastName = last; this.age = age; this.eyeColor = eye; this.name = function() { return this.firstName + " " + this.lastName }; } // 创建 Person 对象 var myFriend = new Person("Bill", "Gates", 62, "blue"); // 显示全名 document.getElementById("demo").innerHTML = "My friend is " + myFriend.name(); </script> </body> </html>