站内搜索:
首页 >> 前端 >> 内容
UncaughtTypeError:Cannotsetproperty'mobile'ofundefined

时间:2017/8/28 9:33:00

错误:

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

  • 上一篇:Ajax学习笔记
  • 下一篇:Vue项目之Axios数据请求
  • 返回顶部