点击F5或右击刷新时候,怎么实现刷新当前页面? 刚接触JS,很多地方不会...
发布网友
发布时间:2022-12-21 21:00
我来回答
共2个回答
热心网友
时间:2023-01-24 04:41
<script language="javascript">
function ref()
{
window.location.reload(); <!--应该是刷新-->
}
</script>
<form name="form1" method="post" action="">
<input type="button" name="submit" value="刷新" onclick="ref()">
</form>
热心网友
时间:2023-01-24 05:59
先监听F5键盘事件,然后在函数里写 window.location.reload();