为什么getScript在webkit平台会失败?
大家好: 我想使用 getScript 加载 js 文件。加载js后,我想获取test.js文件中定义的变量,在IE浏览器中可以成功,但是在Webkit浏览器中,它会失败,并且显示teststring未定义,这就是为什么,谢谢你帮助!
$.getScript("test.js", function(data, textStatus){
alert(textStatus);
var string = teststring;
}
//测试.js
var teststring = "hello";
Hi All:
I want to use getScript to load a js file. after load js, I want to get the varaible that defined in test.js file, it can be sucessful in IE browser, however, when in Webkit browser, it will fail, and show teststring is undefined, this is why, Thanks for your help!
$.getScript("test.js", function(data, textStatus){
alert(textStatus);
var string = teststring;
}
//test.js
var teststring = "hello";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原因是因为您在 localhost 上,并且 chrome 限制了 file:// 的权限,并且不将其视为单个域。
启动 Chrome 时将
--allow-file-access-from-files
添加到命令行以禁用此安全功能阅读更多信息
http://code.google.com/p/chromium/issues/detail ?id=4197
The reason is because you are on localhost and chrome restrict the privileges of file:// and does not treat it as a single domain.
add
--allow-file-access-from-files
to the command line when launching chrome to disable this security featureRead more at
http://code.google.com/p/chromium/issues/detail?id=4197