Uncaught TypeError: Cannot set property 'mobile' of undefined

来源:互联网 发布:国有企业发展 知乎 编辑:程序博客网 时间:2024/05/29 08:30

错误:

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的使用。


阅读全文
0 0
原创粉丝点击