爱吾下载文章资讯

分类分类

javascript用函数实现对象的方法

2015-05-15 09:44作者:zhao

本文实例讲述了javascript用函数实现对象的方法。分享给大家供大家参考。具体实现方法如下:

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>利用函数实现对象(重要)</title>

<script type="text/javascript">

function Person(name, age) {

//定义属性,同时初始化

this.name = name;

this.age = age;

//定义方法

this.ShowInfo = function () {

alert("name:" + this.name + "--age:" + this.age);

}

}

var ZhangShan = new Person("张三", 30);

alert("Name:" + ZhangShan["name"] + ",Age:" + ZhangShan.age);

//注意第一个属性用的是中括号括起来的,可以动态传递属性名称

ZhangShan.ShowInfo();

</script>

</head>

<body>

</body>

</html>

希望本文所述对大家的javascript程序设计有所帮助。

展开全部

相关

说两句网友评论
    我要跟贴
    取消