- UID
- 343
- 帖子
- 122
- 精华
- 0
- 贡献
- 0
- 推广
- 0
- 有效BUG
- 0
- 注册时间
- 2005-3-8
|
这个站 http://www.iduba.com/
主要代码在 http://www.iduba.com/js/2.js
- function setupClick() {
- if (!poped && !setupClickSuccess){
- if (window.Event)
- document.captureEvents(Event.CLICK);
- prePaypopOnclick = document.onclick;
- document.onclick = gopop;
- setupClickSuccess=true;
- }
- }
- function gopop() {
- if (!poped) {
- popwin = window.open("http://www.365.com",'Fboat_pop','top=0,left=0,width=780,height=480,toolbar=yes, menubar=yes, scrollbars=yes, resizable=yes, location=yes, status=yes,center:no');
- if (popwin) {
- popwin.blur();
- poped = true;
- setpoped();
- }
- }
- if (typeof(prePaypopOnclick) == "function") {
- prePaypopOnclick();
- }
- }
复制代码 |
|