我尝试对basic使用source示例(jquery-file-upload),我在html中包含的文件是:
jquery.js
bootstrap.css
bootstrap.js
jquery.fileupload.css
jquery.iframe-transport.js
jquery.fileupload.js
我还应该包含哪些内容才能正确使用jquery-file-upload
?
我的应用不需要使用jquery-ui
。
如果jquery-ui
确实是对jquery-file-upload
的依赖,那么在没有jquery-ui
的情况下是否有使用它的解决方法?
答案 0 :(得分:9)
没关系,我应该先阅读this。只需要jquery-ui.widget.js
,而不是整个jquery-ui
。
答案 1 :(得分:1)
的顺序
<script src="js/vendor/jquery.ui.widget.js"></script>
<script src="js/jquery.iframe-transport.js"></script>
<script src="js/jquery.fileupload.js"></script>
加载也很重要。
答案 2 :(得分:0)
jquery.js
jquery.ui.widget.js
jquery.iframe-transport.js
jquery.fileupload.js
最后
$('#input').fileupload() // and U is lower case !!!!