1、自定义对象(自定义类)
方法一、直接创建对象
xz=new Object();
xz.firstname="Bill";
xz.lastname="Gates";
xz.age=56;
xz.eyecolor="blue";
替代语法:
xz={firstname:"John",lastname:"Doe",age:50,eyecolor:"blue"};
方法二、使用函数来构造对象
function Person(firstname,lastname,age,eyecolor)
{
this.firstname=firstname;
this.lastname=lastname;
this.age=age;
this.eyecolor=eyecolor;
}
var myFather=new Person("Bill","Gates",56,"blue");
myFather.firstname
2、内置对象(其实是一些内置的类)
http://blog.csdn.net/baok1592/article/details/6478261
1.Array 数组对象
2.Boolean 布尔值对象
3.Date 日期对象
4.Math 算术对象
5.Number 数字对象
6.Object
7.RegExp 正则表达式对象
8.String 字符串对象
9.Global
10.Function
3、浏览器对象
Window
Navigator 返回浏览器的相关信息
Screen
History
Location
4、HTML DOM对象
不通过html的一些标签,而是使用DOM对象的方式,如添加表格、下拉框等
Document
Anchor
Area
Base
Body
Button
Canvas
Event
Form
Frame
Frameset
IFrame
Image
Input Button
Input Checkbox
Input File
Input Hidden
Input Password
Input Radio
Input Reset
Input Submit
Input Text
Link
Meta
Object
Option
Select
Style
Table
TableCell
TableRow
Textarea