这个问题快把我逼疯了。当我将 jQuery 标签引用到 http 地址时
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
该应用程序运行良好。但是当我使用此代码时(在本地调用 jquery)
<link rel="stylesheet" href="css/jquery.mobile-1.1.1.min.css" />
<script src="js/jquery-1.7.1.min.js" ></script>
<script src="js/jquery.mobile-1.1.1.min.js" ></script>
该应用程序不起作用,Chrome 控制台给了我这个错误
未捕获的类型错误:无法读取未定义的属性“事件”
jquery.mobile-1.1.1.min.js:7
我 100% 确定文件是可访问的(Ctrl + U 显示源代码,我从浏览器打开文件,它们在那里并且可以访问)有没有人有同样的问题并且知道解决方案?