码迷,mamicode.com
首页 > Web开发 > 详细

json面向对象

时间:2017-01-20 16:20:22      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:type   .sh   head   ack   charset   doctype   比较   json   text   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>

</style>

</head>
<body>

<script type="text/javascript">
//不适合多个对象
var json = {
    name: lin,
    qq: 23287346,

    showName:function()
    {
        alert(我的名字叫:+ this.name);
    }
    showQQ:function()
    {
        alert(我的QQ号是:+ this.qq);
    }
};

json.showName();
json.showQQ();
//Json:整个程序里只有一个对象,写起来比较简单
</script>
</body>
</html>

 

json面向对象

标签:type   .sh   head   ack   charset   doctype   比较   json   text   

原文地址:http://www.cnblogs.com/pjw2017/p/6322789.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!