返回列表 发帖

这条JS怎么过滤?谢谢啦

一个网站上有这么一段JS

  1. <!-- 新浪广告 2008-8-15 -->
  2. <style type="text/css">
  3. .closead{width:300px;height:18px;font-size:14px;font-weight:bold;text-align:right;CURSOR: hand;}
  4. </style>
  5. <script type="text/javascript">
  6. ad4all_url="http://2008.sina.com.cn/v/0808/171/86/index.html";   //广告地址
  7. document.writeln('<div id="ShowAD" style="position:absolute; z-index: 100;"> ');
  8. document.writeln('<div class="closead" onclick="closead();">关闭 </div>');
  9. document.writeln('  <iframe scrolling="no" style="width:300px;height:200px;" frameborder="0" src="'+ad4all_url+'"></iframe>');
  10. document.writeln('</div>');
  11. var bodyfrm = ( document.compatMode.toLowerCase()=="css1compat" ) ? document.documentElement : document.body;
  12. var adst = document.getElementById("ShowAD").style;
  13. adst.top = ( bodyfrm.clientHeight - 218 ) + "px";
  14. adst.left = ( bodyfrm.clientWidth - 300 ) + "px";
  15. function moveR() {
  16. adst.top = ( bodyfrm.scrollTop + bodyfrm.clientHeight - 218 ) + "px";
  17. adst.left = ( bodyfrm.scrollLeft + bodyfrm.clientWidth - 300 ) + "px";
  18. }
  19. setInterval("moveR();", 80);
  20. function closead()
  21. {
  22. adst.display='none';
  23. }
  24. </script>
复制代码

不负责任的写法.. 不建议,不提倡.
#ex# 为匹配全部网站

#exd#*网站地址*#  为匹配特定网站   // 这样消耗资源少. 效率高
  1. #ex#<script\stype="text\/javascript">\sad4all_url=[\s\S]*?<\/script>###
复制代码
天下无不散之筵席.

世界之窗浏览器开发计划

TOP

谢谢哦

TOP

返回列表