大家好,我是java初学者,我需要做一些警告 显示当页面需要刷新并完成一些工作时 counter = 0或删除文件如何通过jquery和java脚本执行此操作? 谢谢!
答案 0 :(得分:0)
在页面加载/刷新之前:
<head>
alert("hello");
</head>
在体内:
<script>
$count= 0;
while ($count < 10 ) {
$count++;
}
alert("counter increased: " + $count + " times");
</script>
答案 1 :(得分:0)
您可以绑定刷新事件:
window.onbeforeunload = function () {
return 'Post job process not completed yet.';
}