国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

JavaScript? ??? ?????

JavaScript? ????? ???? ? ?? ?? ??(??? ??)? ????? ?? ???? ???? ??? ??? ???? ?? ??? ??? ???? ???.

?? ?? "student" ??? ??? ??? ?? ??? ???? ?????.

student = new Object();  // 創(chuàng)建對象“student”
student.name = "Tom";   // 對象屬性 名字
student.age  = "19";    // 對象屬性 年齡
student.study =function() {   // 對象方法 學(xué)習(xí)
    alert("studying");
};
student.eat =function() {     // 對象方法 吃
    alert("eating");
};

?? ??? ?? ??? ?? ?? ????.

var student = {};
student.name = "Tom";
……

?? ??? ????:

var student = {
    name:"Tom";
     age:"19";
    ……
}

??? ?? ??? ?? ??? ?? ? ???? ??? ?? ????? ??? ???? ? ??? ?? ?? ????.

function student(name,age) {
    this.name = name;
    this.age = age;
    this.study = function() {
        alert("studying");
    };
    this.eat = function() {
        alert("eating");
    }
}

?? ?? new? ?? ?? ?? ????:

var student1 = new student('Tom','19');
var student2 = new student('Jack','20');
rrree


???? ??
||
<html> <head> <script type="text/javascript"> var person = { name: "dongjc", age: 32, Introduce: function () { alert("My name is " + this.name + ".I'm " + this.age); } }; person.Introduce(); </script> </head> <body> </body> </html>