标签:json type pre zha code col div cti ext
string callback = Request["callback"]; string json = "{‘name‘:‘zhaoyihao‘,‘age‘:18}"; Response.Write(callback+"("+json+")");
<script type="text/javascript">
function json (data) {
console.log(data.name);
}
var script=document.createElement(‘script‘);
script.src="http://localhost:1095/index?callback=json";
document.body.appendChild(script);
</script>
标签:json type pre zha code col div cti ext
原文地址:http://www.cnblogs.com/zhaoyihao/p/7577117.html