感谢这个网站;)
我正在使用 phonegap 和 jquery mobile 开发一个 iPhone 应用程序。
在我的第一页上,我重定向到 login.html 页面。我只把它放在我的 index_bis.js 文件中:window.location.href ='login.html';
重定向有效,但我的页面上没有样式。当我不重定向时,该样式有效!:(
一个主意 ?非常感谢!
这是我的 index.html 的一部分:
<head>
<title>...</title>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<link rel="stylesheet" href="css/jquery.mobile-1.3.0.css" />
</head>
<body>
<script src="js/jquery.js"></script>
<script src="js/jquery.mobile-1.3.0.js"></script>
<script src="js/login.js"></script>
<script src="js/index_bis.js"></script>
</body>