首次点击网站的任何部分时触发广告
Trigger an ad for the first click on ANY part of the website
有些网站无论我点击哪里(背景、随机词、现有链接,任何东西)都会弹出广告。例如:我第一次单击“联系”时收到垃圾邮件,但如果我再次单击“联系”,我实际上会转到“/contact”部分。
我想知道这怎么可能以及它是如何制作的。
像这样:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
i = 0;
$(document).on('click','body',function(event){
if (i == 0) {
event.preventDefault();
//insert code to display ad here
alert('spam here');
i++;
}
});
</script>
<body>
<div>blah blah blah</div>
<a href = "//whosebug.com">link here</a>
</body>
第一次点击后,i
不再是=0,因此恢复了body元素的默认动作。
有些网站无论我点击哪里(背景、随机词、现有链接,任何东西)都会弹出广告。例如:我第一次单击“联系”时收到垃圾邮件,但如果我再次单击“联系”,我实际上会转到“/contact”部分。
我想知道这怎么可能以及它是如何制作的。
像这样:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
i = 0;
$(document).on('click','body',function(event){
if (i == 0) {
event.preventDefault();
//insert code to display ad here
alert('spam here');
i++;
}
});
</script>
<body>
<div>blah blah blah</div>
<a href = "//whosebug.com">link here</a>
</body>
第一次点击后,i
不再是=0,因此恢复了body元素的默认动作。