当前位置:编程学习 > JS >>

在Javascript中定义对象类别

答案:From: JavaEye.com

注意JavaScript中对象类别的定义,使用function来定义对象类别,初始化对象使用new操作符
function Person(name, age) {
this.name = name;
this.age = age;
this.toString = function() {
document.writeln("[name]:"+this.name+"<br>"+"[age]:"+this.age);
}
}

完整的简单HTML
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>JavaScript</title>
<script language="javascript" type="text/javascript">
function Person(name, age) {
this.name = name;
this.age = age;
this.toString = function() {
document.writeln("[name]:"+this.name+"<br>"+"[age]:"+this.age);
}
}
</script>
</head>

<body>
<script type="text/javascript">
var person = new Person();
person.name="robbin";
person.age=30;
person.toString();
</script>
</body>
</html>

上一个:Javascript实例教程(19) 使用HoTMetal(3)
下一个:破解md5加密扫描程序(适合扫描弱密码)[

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,