ajax 跨域

1.iframe及其onload(没试)
2.JQuery的getJSON()方法
 (1).Client
 $.getJSON(window.parent.document.getElementById("msg_url").value + "GetCorpMSG.aspx?jsoncallback=?", {

corp_id: corpid, opt: "add", m: (new Date()).getTime().toString() }, function(data) {
        });
 在网址后面加一个jsoncallback=?,值为问号
 (2).Server
 Response.Write(Request.QueryString["jsoncallback"] + "(" + collection + ")" );
 collection为JSON格式字符串

你可能感兴趣的:(Ajax,Date,json,function,url,getjson)