为什么getScript在webkit平台会失败?

发布于 2024-10-28 21:13:35 字数 334 浏览 1 评论 0原文

大家好: 我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隔纱相望 2024-11-04 21:13:35

原因是因为您在 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 feature

Read more at
http://code.google.com/p/chromium/issues/detail?id=4197

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文