Jquery getScript($.getScript()) 在 Chrome 上不起作用?

发布于 2024-09-14 04:52:51 字数 431 浏览 2 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

≈。彩虹 2024-09-21 04:52:51

谢谢你们让我明白了。

我想我应该让我的脚本内联,因为内联代码在所有浏览器上都可以正常工作。

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.

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