当我按下确定时,我得到一个奇怪的错误,它只是继续加载但没有做任何事情。
我有一个简单的 HTML、CSS 和 JS 文件。
<!DOCTYPE html>
<html>
<head>
<title>Hello App</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<script type="text/javascript" src="file:///C:/DevPro/Mobile/phonegap-2.8.0/lib/android/cordova.js"></script>
<script type="text/javascript" src="C:\Users\boaz\WebstormProjects\FirstApp\script\script.js"></script>
<link rel="stylesheet" type="text/css" href="C:\Users\boaz\WebstormProjects\FirstApp\style\style.css"/>
</head>
<body>
<!-- header -->
<header>
<p>hello</p>
</header>
<!-- header -->
<!-- content -->
<section>
<p>content</p>
</section>
<!-- content -->
<!-- footer-->
<footer>
<p>footer</p>
</footer>
<!-- footer-->
</body>
</html>
我用波纹来模拟。
为什么会这样?我需要做什么?