web開發(fā)中,如果需要將“服務(wù)端返回的json對(duì)象”綁定到“現(xiàn)有頁(yè)面上的dom元素”,傳統(tǒng)賦值的方式太繁瑣,寫起來也很累(特別是json對(duì)象很大時(shí)),于是想出了下面的偷懶方法,不過有二個(gè)前提:
1、元素的id要與json對(duì)象中的屬性命名一致
2、json對(duì)象中的屬性名,最好不要重復(fù)
//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>
新聞熱點(diǎn)
疑難解答
圖片精選
網(wǎng)友關(guān)注