亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? coreclasses.js

?? 在流覽器上仿CS界面的JAVASCRIPT腳本
?? JS
?? 第 1 頁 / 共 5 頁
字號:
else {_p.getPreferredWidth=function(){if(this._preferredWidth!=null)
return this._preferredWidth;if(!this._created)
throw new Error("Visual property on non created component");var tempSpan=this._document.createElement("SPAN");tempSpan.style.position="relative";tempSpan.style.cssFloat="left";var el=this._element;while(el.hasChildNodes())
tempSpan.appendChild(el.firstChild);el.appendChild(tempSpan);var w=tempSpan.offsetWidth;el.removeChild(tempSpan);while(tempSpan.hasChildNodes())
el.appendChild(tempSpan.firstChild);return this.getInsetLeft()+w+parseInt(this.getStyleProperty("paddingLeft"))+parseInt(this.getStyleProperty("paddingRight"))+this.getInsetRight();};_p.getPreferredHeight=function(){if(this._preferredHeight!=null)
return this._preferredHeight;if(!this._created)
throw new Error("Visual property on non created component");var tempSpan=this._document.createElement("SPAN");tempSpan.style.position="relative";tempSpan.style.cssFloat="left";var el=this._element;while(el.hasChildNodes())
tempSpan.appendChild(el.firstChild);el.appendChild(tempSpan);var h=tempSpan.offsetHeight;el.removeChild(tempSpan);while(tempSpan.hasChildNodes())
el.appendChild(tempSpan.firstChild);return this.getInsetTop()+h+parseInt(this.getStyleProperty("paddingTop"))+parseInt(this.getStyleProperty("paddingBottom"))+this.getInsetBottom();};}
BiComponent.prototype.setPreferredWidth=function(v){this._preferredWidth=v;};BiComponent.prototype.setPreferredHeight=function(v){this._preferredHeight=v;};_p.setPreferredSize=function(nWidth,nHeight){this.setPreferredWidth(nWidth);this.setPreferredHeight(nHeight);};_p.pack=function(){this.setSize(this.getPreferredWidth(),this.getPreferredHeight());};BiComponent.prototype.getMinimumWidth=function(){return this._minimumWidth;};BiComponent.prototype.setMinimumWidth=function(v){this._minimumWidth=v;};BiComponent.prototype.getMaximumWidth=function(){return this._maximumWidth;};BiComponent.prototype.setMaximumWidth=function(v){this._maximumWidth=v;};BiComponent.prototype.getMinimumHeight=function(){return this._minimumHeight;};BiComponent.prototype.setMinimumHeight=function(v){this._minimumHeight=v;};BiComponent.prototype.getMaximumHeight=function(){return this._maximumHeight;};BiComponent.prototype.setMaximumHeight=function(v){this._maximumHeight=v;};_p.setBorder=function(oBorder){if(this._border)
this._border.removeBorder(this);this._border=oBorder;if(oBorder)
this._border.paintBorder(this);};_p.getBorder=function(){return this._border?this._border:new BiBorder;};_p.setOverflow=function(sOverflow){if(BiBrowserCheck.ie)
{this.setOverflowX(sOverflow);this.setOverflowY(sOverflow);}
else {this._overflow=sOverflow;this._overflowX=sOverflow;this._overflowY=sOverflow;if(sOverflow=="hidden")
sOverflow="-moz-scrollbars-none";this.setStyleProperty("overflow",sOverflow);}};_p.getOverflow=function(){if(BiBrowserCheck.ie)
{var x=this.getOverflowX();var y=this.setOverflowY();return x==y?x:null;}
else {var s=this.getStyleProperty("overflow");if(s=="-moz-scrollbars-horizontal"||s=="-moz-scrollbars-vertical")
return null;else if(s=="-moz-scrollbars-none")
return"hidden";else return s;}};_p.setOverflowX=function(sOverflowX)
{if(BiBrowserCheck.ie)
this.setStyleProperty("overflowX",sOverflowX);else {var s;this._overflowX=sOverflowX;if(this._overflowX=="hidden"&&this._overflowY=="hidden")
s="-moz-scrollbars-none";else if(this._overflowX==this._overflowY)
s=sOverflowX;else if(this._overflowX=="scroll"||this._overflowY=="scroll")
s="scroll";else if(this._overflowX=="auto"||this._overflowY=="auto")
s="auto";else if(this._overflowX=="hidden"&&this._overflowY=="scroll")
s="-moz-scrollbars-vertical";else s="-moz-scrollbars-horizontal";this.setStyleProperty("overflow",s);}};_p.setOverflowY=function(sOverflowY)
{if(BiBrowserCheck.ie)
this.setStyleProperty("overflowY",sOverflowY);else {var s;this._overflowY=sOverflowY;if(this._overflowX=="hidden"&&this._overflowY=="hidden")
s="-moz-scrollbars-none";else if(this._overflowX==this._overflowY)
s=sOverflowX;else if(this._overflowX=="scroll"||this._overflowY=="scroll")
s="scroll";else if(this._overflowX=="auto"||this._overflowY=="auto")
s="auto";else if(this._overflowX=="hidden"&&this._overflowY=="scroll")
s="-moz-scrollbars-vertical";else s="-moz-scrollbars-horizontal";this.setStyleProperty("overflow",s);}};_p.getOverflowX=function()
{if(BiBrowserCheck.ie)
return this.getStyleProperty("overflowX");else {var s=this.getStyleProperty("overflow");if(s=="-moz-scrollbars-horizontal")
return"scroll";else if(s=="-moz-scrollbars-vertical"||s=="-moz-scrollbars-none")
return"hidden";else return s;}};_p.getOverflowY=function()
{if(BiBrowserCheck.ie)
return this.getStyleProperty("overflowY");else {var s=this.getStyleProperty("overflow");if(s=="-moz-scrollbars-vertical")
return"scroll";else if(s=="-moz-scrollbars-horizontal"||s=="-moz-scrollbars-none")
return"hidden";else return s;}};_p.setScrollLeft=function(nScrollLeft){if(!this._created)
throw new Error("Visual property on non created component");this._element.scrollLeft=nScrollLeft;};_p.setScrollTop=function(nScrollTop){if(!this._created)
throw new Error("Visual property on non created component");this._element.scrollTop=nScrollTop;};_p.getScrollLeft=function(){if(!this._created)
throw new Error("Visual property on non created component");return this._element.scrollLeft;};_p.getScrollTop=function(){if(!this._created)
throw new Error("Visual property on non created component");return this._element.scrollTop;};_p.getScrollWidth=function(){if(!this._created)
throw new Error("Visual property on non created component");if((new BiBrowserCheck).getIe55()){var max=this._element.scrollWidth;var cs=this._children;var l=cs.length;for(var i=0;i<l;i++)
max=Math.max(max,cs[i].getLeft()+cs[i].getWidth());return max;}
else return this._element.scrollWidth;};_p.getScrollHeight=function(){if(!this._created)
throw new Error("Visual property on non created component");if((new BiBrowserCheck).getIe55()){var max=this._element.scrollHeight;var cs=this._children;var l=cs.length;for(var i=0;i<l;i++)
max=Math.max(max,cs[i].getTop()+cs[i].getHeight());return max;}
else return this._element.scrollHeight;};_p.scrollIntoView=function(bTopLeft){this.scrollIntoViewX(bTopLeft);this.scrollIntoViewY(bTopLeft);};_p.scrollIntoViewX=function(bLeft){if(!this._created){return;}
var p=this._parent;if(!p)return;var l=this.getLeft();var w=this.getWidth();var sl=p.getScrollLeft();var cw=p.getClientWidth();if(bLeft)
p.setScrollLeft(l);else if(bLeft==false)
p.setScrollLeft(l+w-cw);else if(w>cw||l<sl)
p.setScrollLeft(l);else if(l+w>sl+cw)
p.setScrollLeft(l+w-cw);};_p.scrollIntoViewY=function(bTop){if(!this._created){return;}
var p=this._parent;if(!p)return;var t=this.getTop();var h=this.getHeight();var st=p.getScrollTop();var ch=p.getClientHeight();if(bTop)
p.setScrollTop(t);else if(bTop==false)
p.setScrollTop(t+h-ch);else if(h>ch||t<st)
p.setScrollTop(t);else if(t+h>st+ch)
p.setScrollTop(t+h-ch);};_p.setTabIndex=function(nTabIndex){this._tabIndex=nTabIndex;if(BiBrowserCheck.ie)
{this.setHtmlProperty("unselectable",nTabIndex<0||!this._enabled);this.setHtmlProperty("tabIndex",nTabIndex<0?-1:1);}
else {this.setStyleProperty("MozUserFocus",nTabIndex<0?"ignore":"normal");}};_p.getTabIndex=function(){return this._tabIndex;};_p.setHideFocus=function(bHideFocus)
{this._hideFocus=bHideFocus;if(BiBrowserCheck.ie)
this.setHtmlProperty("hideFocus",bHideFocus);else {if(bHideFocus)
this.setStyleProperty("MozOutline","none");else this.removeStyleProperty("MozOutline");}};_p.getHideFocus=function()
{return this._hideFocus;};_p._focusComponent=function()
{if(BiBrowserCheck.ie)
{try
{this._element.focus();}
catch(ex){}}
else {if(this._element.focus)
{try
{this._element.focus();}
catch(ex){}}
else {this.getTopLevelComponent()._eventManager.
_mozOnFocus(null,this,this._element);}}};_p._blurComponent=function()
{if(this.getDisposed())
return;if(BiBrowserCheck.ie)
{this._element.blur();}
else {if(this._element.blur)
{try{this._element.blur();}
catch(ex){}}
else {this.getTopLevelComponent()._eventManager.
_mozOnBlur(null,this,this._element);}}};_p.setFocused=function(bFocused)
{if(bFocused&&!this.getCanFocus())
throw new Error("Cannot set focus to component");if(this._focused!=bFocused){if(bFocused)
this._focusComponent();else{this.getTopLevelComponent()._eventManager._setFocusedComponent(null);this._blurComponent();}}};BiComponent.prototype.getFocused=function(){return this._focused;};_p.getContainsFocus=function(){var fr=this.getFocusRoot();if(fr)
return this.contains(fr.getActiveComponent());return false;};_p.getCanFocus=function(){return this._created&&this.getTabIndex()>=0&&this.getIsEnabled()&&this.getIsVisible();};_p.getFocusRoot=function(){if(this._parent)
return this._parent.getFocusRoot();return null;};_p.getActiveComponent=function(){var fr=this.getFocusRoot();if(fr)
return fr.getActiveComponent();return null;};_p.isFocusRoot=function(){return false;};BiComponent.prototype.getFocusManager=function(){return this._focusManager;};BiComponent.prototype.setFocusManager=function(v){this._focusManager=v;};_p.setCanSelect=function(bCanSelect)
{this._canSelect=bCanSelect;if(BiBrowserCheck.ie)
{if(bCanSelect)
this.removeHtmlProperty("unselectable");else this.setHtmlProperty("unselectable","on");}
else {if(bCanSelect)
this.removeStyleProperty("MozUserSelect");else this.setStyleProperty("MozUserSelect","none");}};BiComponent.prototype.getCanSelect=function(){return this._canSelect;};_p.setEnabled=function(bEnabled)
{if(this._enabled!=bEnabled)
{if(this.getTabIndex()>=0)
{if(BiBrowserCheck.ie)
{if(!bEnabled||!this._canSelect)
this.setHtmlProperty("unselectable","on");else this.removeHtmlProperty("unselectable");}
if(this.getFocused()&&!bEnabled){this.setFocused(false);}}
this._enabled=bEnabled;this.setHtmlProperty("disabled",!bEnabled);if(BiBrowserCheck.moz)
{if(bEnabled)
this._removeHtmlAttribute("disabled");else this._setHtmlAttribute("disabled","true");}
this.dispatchEvent(new BiEvent("enabledchanged"));var tlc;if(bEnabled&&this.getCanFocus()&&(tlc=this.getTopLevelComponent())&&tlc.getActiveComponent()==this)
{this.setFocused(true);}}};BiComponent.prototype.getEnabled=function(){return this._enabled;};_p.getIsEnabled=function()
{if(!this.getEnabled())
return false;var p=this.getParent();if(p)
return p.getIsEnabled();return true;};_p.setCapture=function(bCapture){if(this._created){this._element.onlosecapture=BiComponent.__oninlineevent;this._capture=bCapture;if(bCapture){if(BiBrowserCheck.ie)
this._element.setCapture();this.getTopLevelComponent()._eventManager.setCaptureComponent(this);}
else{if(BiBrowserCheck.ie)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产真实乱子伦精品视频| 国产剧情一区在线| 国产亚洲1区2区3区| 欧美亚洲一区二区三区四区| 国产一区二区三区在线看麻豆| 一区二区三区成人| 国产精品视频你懂的| 日韩美女天天操| 在线观看视频欧美| av在线综合网| 国产乱码精品一区二区三区五月婷| 亚洲制服丝袜一区| 亚洲欧洲在线观看av| 精品国产电影一区二区| 欧美嫩在线观看| 色狠狠桃花综合| 99精品欧美一区二区三区综合在线| 国产一区在线观看视频| 免费观看日韩av| 午夜久久福利影院| 亚洲在线免费播放| 亚洲理论在线观看| 中文字幕亚洲视频| 日本一区二区视频在线| 久久综合色一综合色88| 日韩免费看的电影| 欧美一级久久久久久久大片| 欧美日韩高清一区二区不卡| 色网综合在线观看| 97aⅴ精品视频一二三区| 成人黄色片在线观看| 福利一区福利二区| 国产成人精品免费| 国产成人免费xxxxxxxx| 国产传媒一区在线| 国产成人免费网站| 不卡在线观看av| 北条麻妃一区二区三区| 成人的网站免费观看| 9i看片成人免费高清| av影院午夜一区| 91麻豆精品在线观看| 91福利资源站| 欧美日韩一区在线| 欧美久久久影院| 日韩西西人体444www| 精品国内二区三区| 久久久蜜臀国产一区二区| 国产喂奶挤奶一区二区三区| 国产精品天美传媒| 亚洲人成精品久久久久| 亚洲综合色在线| 午夜影院久久久| 免费成人在线观看| 国产盗摄女厕一区二区三区| av午夜一区麻豆| 91精彩视频在线观看| 欧美日韩你懂得| 日韩欧美精品在线| 欧美国产一区在线| 亚洲精品国久久99热| 日本一区中文字幕| 国产中文一区二区三区| 不卡一二三区首页| 欧美性猛交xxxx乱大交退制版| 精品视频资源站| 26uuu精品一区二区| 中文字幕制服丝袜一区二区三区 | 欧美一二三四在线| 欧美精品一区二区三区在线| 国产精品入口麻豆原神| 亚洲成av人影院| 激情综合一区二区三区| av一二三不卡影片| 欧美一级免费观看| 欧美国产精品一区二区三区| 亚洲国产精品嫩草影院| 国产乱子伦一区二区三区国色天香| jvid福利写真一区二区三区| 欧美日韩免费电影| 国产精品免费网站在线观看| 亚洲成人tv网| 成人h动漫精品一区二区| 欧美丰满嫩嫩电影| 国产精品麻豆视频| 日韩福利电影在线观看| 岛国精品一区二区| 91精品国产黑色紧身裤美女| 国产精品成人免费精品自在线观看 | 国产精品中文字幕日韩精品| 91精彩视频在线| 久久久精品影视| 亚洲h在线观看| gogo大胆日本视频一区| 精品女同一区二区| 亚洲一卡二卡三卡四卡五卡| 福利一区福利二区| 精品国产乱码久久| 亚洲成人动漫精品| 色成人在线视频| 亚洲国产精品二十页| 免费xxxx性欧美18vr| 欧美视频一区二区三区| 中文一区二区在线观看| 美国精品在线观看| 欧美精品一级二级| 亚洲一区精品在线| 成人国产在线观看| 国产无一区二区| 韩国精品免费视频| 日韩一区二区在线看| 亚洲在线观看免费| 91丨九色porny丨蝌蚪| 欧美国产日产图区| 国产经典欧美精品| 久久人人超碰精品| 久久精品国产成人一区二区三区| 欧美私模裸体表演在线观看| 亚洲图片你懂的| 国产精品99久久久久久宅男| 欧美一区二区黄| 视频一区二区中文字幕| 欧美性猛交xxxxxxxx| 有坂深雪av一区二区精品| 成人av电影在线| 国产精品久久久久久久裸模| 国产黄色精品网站| 久久精品亚洲精品国产欧美| 国内精品在线播放| 久久亚洲私人国产精品va媚药| 久久国产精品第一页| 91精品国产入口| 日本不卡1234视频| 91精品国产91久久久久久一区二区| 亚洲成人www| 制服.丝袜.亚洲.另类.中文| 亚洲国产人成综合网站| 欧美日韩一级片网站| 视频在线观看91| 日韩精品在线看片z| 麻豆专区一区二区三区四区五区| 日韩视频在线永久播放| 精品中文字幕一区二区小辣椒| 日韩精品一区二区三区在线播放| 精品一区二区免费看| 久久久久一区二区三区四区| 国产aⅴ精品一区二区三区色成熟| 国产网站一区二区三区| 99riav久久精品riav| 亚洲曰韩产成在线| 日韩三级视频在线观看| 国产在线精品免费| 国产精品久久久久久久岛一牛影视 | 一区二区三区四区不卡视频| 欧美视频一区二区| 老司机精品视频导航| 久久毛片高清国产| 99久久99精品久久久久久| 一区二区三区精品在线| 69堂成人精品免费视频| 国产精品888| 亚洲精品国产精品乱码不99| 欧美日韩国产电影| 国产美女精品一区二区三区| 国产精品传媒视频| 欧美人与性动xxxx| 国产成人aaa| 亚洲成人免费影院| 久久免费视频一区| 色综合av在线| 国内精品免费在线观看| 亚洲欧美综合网| 日韩午夜激情免费电影| a级精品国产片在线观看| 日韩不卡一二三区| 中文字幕一区二区在线观看| 欧美日韩dvd在线观看| 国产精品一级黄| 亚洲一区日韩精品中文字幕| 欧美成人a视频| 色综合天天综合狠狠| 国内欧美视频一区二区| 亚洲欧美日韩中文播放 | 久久久精品国产免大香伊| 91麻豆.com| 国产麻豆精品一区二区| 亚洲一区二区三区四区在线 | 国产激情视频一区二区在线观看| 一区二区国产视频| 久久久久久9999| 在线成人午夜影院| 99精品视频中文字幕| 久久99精品国产| 性做久久久久久久久| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆 | 日韩精品午夜视频| 亚洲女人小视频在线观看| 欧美精品一区二区三区视频| 欧美日韩国产天堂| 91网上在线视频|