当我点击退出按钮时,它不会重定向到另一个页面。
<button onClick="window.location='logout.php'">Exit</button>
我正在执行上面的代码,但它不起作用。
答案 0 :(得分:0)
适用于所有浏览器:
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>