我使用了<meta http-equiv="refresh" content="10;url=https://www.test.com />
,但如果是,我必须取消它
单击<a href="https://www.test1.com"><button>Finsh</button></a>
完成按钮。但是这个代码每10秒刷新一次,我使用的工具也不支持javascript。可以取消我使用元标记设置的时间.. ??
答案 0 :(得分:0)
首先使用JavaScript每10秒刷新一次页面。
<script>
timerID = setInterval(function() {location.reload();},10000);
</script>
<body>
<button id="button" onclick="clearInterval(timerID);">
Stop refreshing
</button>
</body>
看看here。
希望这有帮助! :)