像app內(nèi)嵌h5網(wǎng)頁的廣告出現(xiàn)的最多
- 出現(xiàn)的原因
1,DNS挾持,域名解析出現(xiàn)問題
2空繁,js注入,頁面沒有對特殊字符做限制
3凯砍,iframe標(biāo)簽注入,頁面被攔截之后加入了iframe標(biāo)簽座泳,或者利用js注入后加載了廣告的iframe標(biāo)簽
4,公司服務(wù)器被黑了解決方案
- 解決方案
1,使用meta標(biāo)簽禁用iframe標(biāo)簽
<meta http-equiv="X-Frame-Options" content="DENY">
2饲漾,使用js的方法禁用iframe標(biāo)簽
<script type="text/javascript">
if(top.location!=self.location)top.location=self.location;
</script>
3吃型,css讓iframe出現(xiàn)的東西變成空白的
<style type="text/css">
iframe{v:expression(this.src='about:blank',this.outerHTML='');}
</style>
4,在網(wǎng)站中加入https可以防止