第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定

javascript:json數(shù)據(jù)的頁面綁定

標簽:
JavaScript

web开发中,如果需要将“服务端返回的json对象”绑定到“现有页面上的dom元素”,传统赋值的方式太繁琐,写起来也很累(特别是json对象很大时),于是想出了下面的偷懒方法,不过有二个前提:

1、元素的id要与json对象中的属性命名一致

2、json对象中的属性名,最好不要重复

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html>
<head>
<title>json对象遍历演示</title>
<script type="text/javascript">
var obj = {a:'a1',b:'b1',c:{c1:'c1'},d:1,e:true,f:new Date("2012/12/24")};
 
 
//showJsonProperty(obj);
 
/*
function showJsonProperty(jsonObj){
    for(var o in jsonObj){     
        alert("属性名:" + o.toString() + ",值:" + jsonObj[o].toString() + ",type:" + typeof(jsonObj[o]) ); 
        if (typeof(jsonObj[o])=="object")
        {
            showJsonProperty(jsonObj[o]);
        }      
    }
}
*/
 
 
function bindJson(jsonObj){
    for(var o in jsonObj){ 
        var domObj = document.getElementById(o.toString());
        if (domObj!=undefined){
            domObj.value=jsonObj[o].toString();
        }      
        if (typeof(jsonObj[o])=="object")
        {
            bindJson(jsonObj[o]);
        }      
    }
}
 
function bindData(){   
    bindJson(obj);
}
</script>
<style type="text/css">
    input{width:80px;height:18px;margin:0 10px 0 0;border:1px #999 solid}
    input:hover{border:1px #ff0000 solid}
    input[type=button]{background-color:#efefef;height:22px;}
</style>
</head>
<body>
    <div>
        a:
        <input id="a" />
        b:
        <input id="b" />
        c.c1:
        <input id="c1" />
        d:
        <input id="d" />
        e:
        <input id="e" />
        f:
        <input id="f" />
        <input type="button" value="绑定" id="btnBind" onclick="bindData()"/>
    </div>
</body>
</html>
點擊查看更多內(nèi)容
1人點贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優(yōu)質(zhì)文章

正在加載中
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦
今天注冊有機會得

100積分直接送

付費專欄免費學(xué)

大額優(yōu)惠券免費領(lǐng)

立即參與 放棄機會
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號

舉報

0/150
提交
取消