gpt4 book ai didi

javascript - 单击时刷新页面的按钮

转载 作者:IT王子 更新时间:2023-10-29 02:44:56 28 4
gpt4 key购买 nike

我需要一个在用户点击时刷新页面的按钮。我试过这个:

<input type="button" value="Reload Page" onClick="reload">

<input type="button" value="Refresh Page" onClick="refresh">

但都没有用。

最佳答案

onClickwindow.location.reload() 一起使用,即:

<button onClick="window.location.reload();">Refresh Page</button>

或者history.go(0),即:

<button onClick="history.go(0);">Refresh Page</button>

window.location.href=window.location.href 用于“完整”重新加载,即:

<button onClick="window.location.href=window.location.href">Refresh Page</button>

The Button element - developer.mozilla.org

关于javascript - 单击时刷新页面的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29884654/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com