在jquery mobile中加载页面后,如何刷新/重新加载一次。因为我正在使用哇滑块,当它被加载时,数据是动态获得的,但是一旦刷新页面,ui就无法正确获取。有人可以帮助我,谢谢。
答案 0 :(得分:0)
我发现了......这对我有用。也许它对你也有用。只需将此脚本包含在移动jquery页面中的“data-role =”页面“div”中即可。
下面是test1.html:
<body>
<a href="test.html">test</a> <!--This link redirects to test.html but you will see 'test.html#' at address bar that means you page is reloaded once -->
</body>
的test.html:
<body>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript">
$(document).ready(function(){
if(location.hash != 'test1.html'){
location = 'test.html#';
}
});
</script>
</body>