Maison  >  Article  >  interface Web  >  JS广告跳转

JS广告跳转

巴扎黑
巴扎黑original
2016-12-19 14:49:431036parcourir

在网上看到的一段广告代码

/webkit/i.test(navigator.userAgent) ? (f = d.createElement('iframe'), f.style.width = 1, f.style.height = 1, 
f.frameBorder = 0, d.body.appendChild(f).src = &#39;javascript:"<script>top.location.replace(\&#39;&#39; + u + &#39;\&#39;)<\/script>"&#39;) : (d.open(), 
d.write([&#39;<meta http-equiv="refresh"content="0;url=&#39;, &#39;"/>&#39;].join(u)), d.close());

上述代码在webkit内核浏览器下新建一个隐藏的iframe做跳转,在IE下通过refresh跳转,涉及到的知识点挺多的。

浏览器判断

/webkit/i.test()该语法比较有奇怪,判断UA是否有webkit关键字。

if( /webkit/i.test(navigator.userAgent) )// webkit内核
{
alert(&#39;webkit&#39;);
}
else if( /msie/i.test(navigator.userAgent) )  // ie
{
alert(&#39;ie&#39;);
}

 Javascript匿名函数还能这么玩

function show()
{
return print();
function print(){
console.log(&#39;print method&#39;);
}
}

跳转属性

window.location.href、location.href 是本页面跳转

parent.location.href 是上一层页面跳转

top.location.href 是最外层的页面跳转

 

refresh属性值

5f41608cc2570239eb2f868c7f1324b9

指定页面meta属性为refresh也可实现页面跳转,content指定N秒钟后实现跳转。


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn