JS代码实现点击网页任何地方都先弹出自定义广告/页面

建站教程 阅读

JS示例实现第一次访问站时点击任何地方都先弹出一个广告页,示例如下。请将下面的文件直接复制到。html文件中保存,运行即可看到效果…

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JS代码演示_牛教程</title>
</head>
<body>
<!--代码开始-->
<script type="text/javascript">
var showKouss=function(){
//弹出广告
//window.location.href='https://niujc.com/'; //原窗口打开
window.open("https://niujc.com/"); //新窗口打开
//alert(1);
showKouss=function(){};
}
document.onmousedown=function(){
showKouss();
}
</script>
</body>
</html>

没有cookie记录的,所以刷新页面后会重新弹出广告窗口。

代码中尽量避免ad这样的字眼,免得被浏览器插件屏蔽掉。

本文链接:https://niujc.com/com/1423889.html

栏目:建站教程
来源:
标签:js 代码
时间:2022-07-07

晚上好!当前时间为
目前距离2023年春节还有
TOP