当我单击退出按钮时,它不会重定向到另一个页面。
<button onClick="window.location='logout.php'">Exit</button>
我正在做上面的代码,但它不会工作。
当我单击退出按钮时,它不会重定向到另一个页面。
<button onClick="window.location='logout.php'">Exit</button>
我正在做上面的代码,但它不会工作。
它适用于所有浏览器:
window.location.href = 'page';
利用
<button onClick="javascript:window.location.href ='logout.php'">Exit</button>
如果您想更改页面而不在浏览器返回历史记录中反映它,您可以执行以下操作:
window.location.replace('Page');
<button onClick="javascript:window.location.replace('logout.php')">Exit</button>