即时包含远程 js 文件?

发布于 2024-11-05 14:51:03 字数 213 浏览 0 评论 0原文

有没有一种简单的方法可以动态包含远程 js 文件(在 onclick 函数中)?

我们的 ssl 站点密封的“验证”onclick 事件需要供应商提供的代码。问题是,它会减慢加载时间。因此,我从他们的 js 中提取了该函数并将其托管在本地 - 但他们不时更改请求参数,因此我必须手动编辑 js。

如果我可以在有人单击站点密封时包含远程文件,那就更好了。

TIA。

Is there a simple way to include a remote js file on the fly (in an onclick function)?

The "verify" onclick event for our ssl site seal requires a code include from the vendor. Trouble is, it slows loads times. So I extracted the function from their js and hosted it locally - but they change the request params from time to time so I have to manually edit the js.

It would be nicer if I could just include the remote file when someone clicks the site seal.

TIA.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

沉默的熊 2024-11-12 14:51:03

如果您使用 jQuery,则可以使用 $.getScript

描述:使用 GET HTTP 请求从服务器加载 JavaScript 文件,然后执行它。

If you are using jQuery you can use $.getScript

Description: Load a JavaScript file from the server using a GET HTTP request, then execute it.

谁的年少不轻狂 2024-11-12 14:51:03

您可以使用 createElement() 并将其添加到 DOM。请参阅下面的文档。

http://www.hunlock.com/blogs/Howto_Dynamically_Insert_Javascript_And_CSS

You can use the createElement() and add it to the DOM. Please see the below document.

http://www.hunlock.com/blogs/Howto_Dynamically_Insert_Javascript_And_CSS

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