摘要: JSONP是JSON with padding 的简写,其有两个部分组成,一个是回调函数,一个是数据,其基本格式如下function handleResult(result){ alert(result.ip);}var script = document.createElement("script");script.src = "http://a.taobao.com/json/?callback = handleResult";document.body.insertBefore(script,document.body.firstChild);JS 阅读全文
posted @ 2013-11-08 13:08 junxizai 阅读(135) 评论(0) 推荐(0) 编辑