اريد جعل المتصفح يدخل للرابط نفسه بشكل تلقائي الف مرة
ما الطريقة؟
<style>
html, body {
margin: 0;
height: 100%;
}
#iframe {
margin: 0;
border: 0;
box-shadow: 0 0 1px #333;
}
</style>
<iframe id="iframe" width="100%" height="100%" src="
"> /global console/ var iframe = document.getElementById("iframe"), end = 1000;/* إنتهاء */
function clickCounter() {
"use strict";
if (typeof (Storage) !== "undefined") {
if (localStorage.clickcount) {
localStorage.clickcount = Number(localStorage.clickcount) + 1;
} else {
localStorage.clickcount = 1;
}
console.log(localStorage.clickcount + " time(s).");
}
}
iframe.onload = function () {
"use strict";
clickCounter();
if (Number(localStorage.clickcount) < end) {
window.location.reload();
}
};
</script>
التعليقات