gpt4 book ai didi

JQuery 文件上传错误 : Uncaught TypeError: Object # has no method '_on'
转载 作者:行者123 更新时间:2023-12-03 21:54:43 25 4
gpt4 key购买 nike

我正在尝试使用 jQuery-File-Upload plugin 。但在实际尝试调用该函数时我遇到了问题。在我的代码中的某个位置,我将调用 $(fubar).fileupload,并获取 Uncaught TypeError: Object #<Object> has no method '_on' jquery.fileupload.js:977 。现在,这是在页面和所有 js 脚本加载之后发生的。

A) A similar error is discussed在工具板上。我尝试了在 dom 加载后包含 jquery.fileupload.js 的技术。我尝试了该技术,如下所示。




<pre><code> <script src='/static/presentation/js/lib/jquery.fileupload.js'></script>
<script src='/static/presentation/js/lib/jquery.iframe-transport.js'></script>
</body>
</code></pre>

但是加载页面时,我收到另一个错误 Uncaught Error: Mismatched anonymous define() module: function ($) {...

B) 在 documentReady 上,我什至尝试在 head 中动态生成并包含脚本标签。但我得到同样的错误 Uncaught Error: Mismatched anonymous define() module: function ($) {...

我正在使用 jquery-file-upload 和 requirejs。我只提到我测试了该库并让它与一个简单的静态站点一起工作。只是基本的js库文件。所以我不知道是什么原因造成的。但它似乎与 DOM 无关。

感谢任何帮助。

最佳答案

好吧,我刚刚想通了。我只需要在 jquery.ui.widget.jsjquery.iframe-transport.js 之后包含 jquery.fileupload.js 。至少我知道以供将来引用。

<script src='/static/presentation/js/lib/jquery.ui.widget.js'></script>
<script src='/static/presentation/js/lib/jquery.iframe-transport.js'></script>
<script src='/static/presentation/js/lib/jquery.fileupload.js'></script>

关于JQuery 文件上传错误 : Uncaught TypeError: Object #<Object> has no method '_on' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13185613/

25 4 0