Zepto 中 jQuery.getScript() 的等价物是什么?
Zepto 中 jQuery.getScript() 的等价物是什么?我需要使用这两个库动态加载 JavaScript 文件。
What's the Zepto equivalent of jQuery.getScript()? I need to dynamically load a JavaScript file with both libraries.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
此作品已附加到 zepto.js!
This works appended to zepto.js!
这部分是从
Zepto.ajaxJSONP
中摘取的。This is partly ripped from
Zepto.ajaxJSONP
.我一直在寻找同样的东西,我发现标准 $.ajax 调用将在
dataType === "script"
时评估响应。我将它实现为 Zepto 插件,如下所示:它应该使用与 jQuery 版本相同的语法,除了我添加了
options
(第三个)参数以允许将任何任意选项传递给 ajax 请求。I was looking for the same thing, I found that the standard $.ajax call will eval responses when the
dataType === "script"
. I implemented it as a Zepto plugin like so:It should work with the same syntax as the jQuery version except I added the
options
(3rd) parameter to allow passing of any arbitrary options to the ajax request.