方法一:
<input type=button value=刷新 οnclick="history.go(0)">
方法二:
<input type=button value=刷新 οnclick="location.reload()">
方法三:
<input type=button value=刷新 οnclick="location=location">
方法四:
<input type=button value=刷新 οnclick="window.navigate(location)">
方法五:
<input type=button value=刷新 οnclick="location.replace(location)">
方法六:
<input type=button value=刷新 οnclick="document.execCommand('Refresh')" />
方法七:
<input type=button value=刷新 οnclick="window.open('Default.aspx','_self')" />