官方的文档特别说明,该函数只适用于1.2以后的版本,之前的版本是不行滴。
代码如下:
function GetCrossDomainContent() {
$.getScript("http://two.xthost.info/im0417/cnblogs.txt", function() { if (typeof (msg) != "undefined") { $("#TestCrossDomain").val(msg[0]); }
});
官方解释 jQuery.getScript(url, [callback])
参数1:url,String类型。待载入 JS 文件地址。
参数2:callback (可选),Function类型。成功载入后回调函数。
代码如下: