我需要一个按钮来刷新用户点击的页面.
我试过这个:
<input type="button" value="Reload Page" onClick="reload">
要么
<input type="button" value="Refresh Page" onClick="refresh">
但都没有奏效.
解决方法:
使用onClick with window.location.reload()
,即:
<button value="Refresh Page" onClick="window.location.reload();">
或history.go(0),即:
<button value="Refresh Page" onClick="history.go(0);">
或者window.location.href = window.location.href为’完全’重载,即:
<button value="Refresh Page" onClick="window.location.href=window.location.href">