即时包含远程 js 文件?
有没有一种简单的方法可以动态包含远程 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 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.
您可以使用
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