Jquery getScript($.getScript()) 在 Chrome 上不起作用?
我在 chrome 上使用 $.getScript()
时遇到问题。它不适用于 Chrome 浏览器。我已经在 Firefox、IE 和 Safari 上测试过它并且有效。我的外部脚本上只有一个 alert()
并且它不起作用。
这是代码:
page
$(document).ready(function(){
$("#btnGet").click(function(){
$.getScript("script.js");
});
});
script.js
alert('Get script loading');
有人遇到过这个问题吗?
I have a problem using $.getScript()
on chrome. It doesn't work on chrome browser. I've tested it on firefox, ie and safari and it worked. All I have on my external script is an alert()
and it doesn't work.
Here's the code:
page
$(document).ready(function(){
$("#btnGet").click(function(){
$.getScript("script.js");
});
});
script.js
alert('Get script loading');
Is anyone have experienced this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
谢谢你们让我明白了。
我想我应该让我的脚本内联,因为内联代码在所有浏览器上都可以正常工作。
Thanks guys for making it clear to me.
I think I would have my script inline instead since the inline code will work fine on all browsers.