ページが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