我想要页面加载 10 次时
alert ('hello !!');
如何得到它?
这是我的代码:
<html>
<head>
<title>my problem !!</title>
<script type="text/javascript">
var i = 0;
myfunc = function () {
if (i++ == 10){
alert ('hello !!');
}
}
window.onload = myfunc;
</script>
</head>
<body>
</body>
</html>
谢谢你的帮助:x