当我编译jquery mobile
代码时,脚本标记不起作用,我错过了任何代码吗?建议我一个答案,我的代码已显示在下面..
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>WELCOME TO MY HOMEAPP</h1>
</div>
<div data-role="content">
<p>Hi Frndz..</p>
</div>
<div data-role="footer">
<h1>USER LOGIN</h1>
</div>
</div>
</body>
</html>
答案 0 :(得分:1)
确保您的应用权限访问互联网。
在config.xml文件中:
<access origin="*" />
在AndroidManifest.xml中
<uses-permission android:name="android.permission.INTERNET" />