我正在使用 Jquery1.8.2 和 Jquery-mobile 1.1
当我单击注销按钮时,我必须转到主页。我能够获得主页,但在返回主页之前收到“错误加载页面”消息。
测试.html
<body>
<div data-role="page">
<div data-role="header" data-theme="b" >
<h1> Success Page </h1>
<a data-role="button" id="logoutbtn" data-theme="b">Logout</a>
</div><!-- /header -->
<div data-role='content'>
</div>
</div>
</body>
测试.js
$(document).ready(function(){
$("#logoutbtn").click(function () {
document.location.href = "Home.html";
});
});
请帮我解决这个问题。