如何通过javascript删除浏览器历史记录?

-2 javascript

有人帮我用javascript自动删除浏览器的历史记录吗?这是我的代码

window.history.go(-(window.history.length-1));
window.location.href="http://newUrl";
Run Code Online (Sandbox Code Playgroud)

但它进入无限循环>

Bra*_*rad 5

出于安全原因,您无法在网页上下文中使用JavaScript删除浏览器的历史记录.

  • 在`<input>`元素中使用`autocomplete ="off"`. (2认同)