以下是几种常见的网页刷新方法:
<!DOCTYPE html>
<html>
<body>
<input type=button value="go" onclick="history.go(0)">
<input type=button value="reload"onclick="location.reload()">
<input type=button value="location" onclick="location=location">
<input type=button value="assign" onclick="location.assign(location)">
<input type=button value="replace" onclick="location.replace(location)">
<input type=button value="href" onclick="location.href=location.href">
</body>
</html>