我有链接jquery和jquery mobile到我的代码, 突然在控制台中我看到一个错误,说:
TypeError: $.mobile is undefined
我已经重新检查了网址并且一切正确,我已经更新了文件(jquery,jquery mobile)并且问题仍然存在。 我把jquery.js放在jquery.mobile.js
之前这是我的代码:
<script src="JS/jquery.js" type="text/javascript"></script>
<script src="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js"></script>
<script src="JS/bootstrap.min.js" type="text/javascript"></script>
<script src="JS/code.js" type="text/javascript"></script>
和它在文件的末尾。 code.js的内容:http://pastebin.com/3LTcxs9S
thx伙计们,我希望你帮助我解决这个问题。
答案 0 :(得分:1)
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.1.min.js">
</script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-
1.3.1.min.js"></script>
通过替换您的代码来试试这个
注意*在把所有jquery库脚本放好后,最后放jquery mobile脚本,我确定它会工作