如何操作json字符串(IE和firefox浏览器兼容)
json:{seeMorePercent:"46",seeMoreWidth:"88",lookflatPercent:"0",lookflatWidth:"0",bearishPercent:"52",bearishWidth:"100"}
js:
function Vote(i) { jQuery.get("ashx/vote.ashx", { act: 1, item: i, randID: Math.random() }, VoteReponse, "json"); } function VoteReponse(result) { var item = eval(result); document.getElementById("morepercentmap").style.width = item.seeMoreWidth*65/100; $("#morepercent").html(item.seeMorePercent+"%"); document.getElementById("flatpercentmap").style.width = item.lookflatWidth * 65 / 100; $("#morepercent").html(item.lookflatPercent + "%"); document.getElementById("beaspercentmap").style.width = item.bearishWidth * 65 / 100; $("#morepercent").html(item.bearishPercent + "%"); }