核心提示:错误:Uncaught TypeError: Cannot set property mobile of undefinedat jquery.mobile-1.4.5.js:26at jqu...
错误:
Uncaught TypeError: Cannot set property 'mobile' of undefined at jquery.mobile-1.4.5.js:26 at jquery.mobile-1.4.5.js:26 at jquery.mobile-1.4.5.js:22 at jquery.mobile-1.4.5.js:22
原因:
未导入jquery包
改正:
在代码
<script src="tool/jQuery/mobile/jquery.mobile-1.4.5.min.js"></script>
前面加上
<script src="tool/jQuery/jquery-2.0.0.min.js"></script>注意:
必须在导入jquery.mobile-1.4.5.min.js之前导入jquery-2.0.0.min.js,否则影响浏览器对jquery的使用。