标题:
这条JS怎么过滤?谢谢啦
[打印本页]
作者:
Albey
时间:
2008-8-16 11:52
标题:
这条JS怎么过滤?谢谢啦
一个网站上有这么一段JS
<!-- 新浪广告 2008-8-15 -->
<style type="text/css">
.closead{width:300px;height:18px;font-size:14px;font-weight:bold;text-align:right;CURSOR: hand;}
</style>
<script type="text/javascript">
ad4all_url="http://2008.sina.com.cn/v/0808/171/86/index.html"; //广告地址
document.writeln('<div id="ShowAD" style="position:absolute; z-index: 100;"> ');
document.writeln('<div class="closead" onclick="closead();">关闭 </div>');
document.writeln(' <iframe scrolling="no" style="width:300px;height:200px;" frameborder="0" src="'+ad4all_url+'"></iframe>');
document.writeln('</div>');
var bodyfrm = ( document.compatMode.toLowerCase()=="css1compat" ) ? document.documentElement : document.body;
var adst = document.getElementById("ShowAD").style;
adst.top = ( bodyfrm.clientHeight - 218 ) + "px";
adst.left = ( bodyfrm.clientWidth - 300 ) + "px";
function moveR() {
adst.top = ( bodyfrm.scrollTop + bodyfrm.clientHeight - 218 ) + "px";
adst.left = ( bodyfrm.scrollLeft + bodyfrm.clientWidth - 300 ) + "px";
}
setInterval("moveR();", 80);
function closead()
{
adst.display='none';
}
</script>
复制代码
作者:
needed
时间:
2008-8-16 14:03
不负责任的写法.. 不建议,不提倡.
#ex# 为匹配全部网站
#exd#*网站地址*# 为匹配特定网站 // 这样消耗资源少. 效率高
#ex#<script\stype="text\/javascript">\sad4all_url=[\s\S]*?<\/script>###
复制代码
作者:
Albey
时间:
2008-8-18 16:02
谢谢哦
欢迎光临 世界之窗论坛 (http://bbs.theworld.cn./)
Powered by Discuz! 7.2