ajax 和 $.getScript() 获取新脚本
我正在尝试动态添加 js 函数,因此我阅读了有关 $.getScript()
的内容。如果我错了,请纠正我,但似乎 $.getScript()
只会调用公共文件夹中已有的 .js 文件,并且只会“加载它”并使其可用,但是调用的js文件本身只是一个静态js。我想做的是调用动态js脚本,并且这个js脚本的内容变化很大,所以它必须来自服务器。
- 我认为单独使用
$.getScript()
这是不可能的,或者是吗? - 如果没有,我可以制作一个返回函数语法的ajax,但是如何将它以某种方式添加到当前的js中,或者如何为其创建一个js文件并加载该js?
- 我可能想稍后删除新的 js,但这不是优先事项。
那么 $.getScript()
可以帮助解决这个问题,或者 $.getScript()
和 .ajax 的组合吗?
I'm trying to add a js function dynamically so I read about $.getScript()
. Correct me if I'm wrong, but it seems $.getScript()
will just call a .js file that's already there in the public folder and will just sort of "load it" and make it available, but the js file itself being called is just a static js. What I'm trying to do is call a dynamic js script and the content of this js script changes considerably, so it has to come from the server.
- I think this isn't possible with
$.getScript()
alone, or is it? - If not, I could make an ajax that returns the function syntax, but how do I then add it somehow to the current js or how do I create a js file for it and load that js?
- I would possibly like to delete the new js later, but that's not a priority.
So can $.getScript()
help with this or a combo of $.getScript()
and .ajax?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Pekka 的评论是正确的 - jquery 不关心文件的扩展名是什么。
$.getScript("dynamicScript.php") 只要该文件输出有效的脚本(不需要脚本标签)就可以正常工作
Pekka's comment is correct - jquery doesn't care what the extension of the file is.
$.getScript("dynamicScript.php") will work just fine so long as that file outputs valid script (no script tags needed)