跨域调用文件
时间:2010-11-10 来源:0417
官方的文档特别说明,该函数只适用于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类型。成功载入后回调函数。
相关阅读 更多 +