window.onload=function(){ var Otxt=document.getElementById("txt"); var num=0; function timer(){ var m=setInterval(function(){ num++; location.reload(); Otxt.value="刷新次数:"+num; },200); } timer(); };<html><body><input id="txt" type="text"></body></html>
4 回答
慕娘9282524
TA贡献13条经验 获得超8个赞
<html>
<body>
<script>
window.onload=function(){
var Otxt=document.getElementById("txt");
var num=0;
function timer(){
var m=setInterval(function(){
num++;
Otxt.value="刷新次数:"+num;
},200);
}
timer();
};
</script>
<input id="txt" type="text">
</body>
</html>
你确定不把js内容 写在<html>中 真的没问题吗。
你确定不把js内容 写在<script>中 真的没问题吗。
添加回答
举报
0/150
提交
取消