文章39 | 阅读 17559 | 点赞0
本文继续介绍对象相关使用,这篇介绍对象的初始化,其实上一篇文章已经有一行代码表示对象的实例化,和今天的有的类似。今天的对象初始化更像是Python中的字典。
<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<script type ="text/javascript">
// 定义一个对象
anthony = {name:"Anthony Liu", age:24};
sunny = {name:"Sunny", age:18};
</script>
</head>
<body>
<script type ="text/javascript">
document.write(anthony.name + " love " + sunny.name + " because she is " + sunny.age);
</script>
</body>
</html>
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/u011541946/article/details/70949050
内容来源于网络,如有侵权,请联系作者删除!