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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? rico.js

?? 一套用于生成各種圖形驗(yàn)證碼的庫(Java)
?? JS
?? 第 1 頁 / 共 5 頁
字號:
/**  *  *  Copyright 2005 Sabre Airline Solutions  *  *  Licensed under the Apache License, Version 2.0 (the "License"); you may not use this  *  file except in compliance with the License. You may obtain a copy of the License at  *  *         http://www.apache.org/licenses/LICENSE-2.0  *  *  Unless required by applicable law or agreed to in writing, software distributed under the  *  License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,  *  either express or implied. See the License for the specific language governing permissions  *  and limitations under the License.  **///-------------------- rico.jsvar Rico = {  Version: '1.1-beta2'}Rico.ArrayExtensions = new Array();if (Object.prototype.extend) {   // in prototype.js...   Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Object.prototype.extend;}if (Array.prototype.push) {   // in prototype.js...   Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Array.prototype.push;}if (!Array.prototype.remove) {   Array.prototype.remove = function(dx) {      if( isNaN(dx) || dx > this.length )         return false;      for( var i=0,n=0; i<this.length; i++ )         if( i != dx )            this[n++]=this[i];      this.length-=1;   };  Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Array.prototype.remove;}if (!Array.prototype.removeItem) {   Array.prototype.removeItem = function(item) {      for ( var i = 0 ; i < this.length ; i++ )         if ( this[i] == item ) {            this.remove(i);            break;         }   };  Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Array.prototype.removeItem;}if (!Array.prototype.indices) {   Array.prototype.indices = function() {      var indexArray = new Array();      for ( index in this ) {         var ignoreThis = false;         for ( var i = 0 ; i < Rico.ArrayExtensions.length ; i++ ) {            if ( this[index] == Rico.ArrayExtensions[i] ) {               ignoreThis = true;               break;            }         }         if ( !ignoreThis )            indexArray[ indexArray.length ] = index;      }      return indexArray;   }  Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Array.prototype.indices;}// Create the loadXML method and xml getter for Mozillaif ( window.DOMParser &&	  window.XMLSerializer &&	  window.Node && Node.prototype && Node.prototype.__defineGetter__ ) {   if (!Document.prototype.loadXML) {      Document.prototype.loadXML = function (s) {         var doc2 = (new DOMParser()).parseFromString(s, "text/xml");         while (this.hasChildNodes())            this.removeChild(this.lastChild);         for (var i = 0; i < doc2.childNodes.length; i++) {            this.appendChild(this.importNode(doc2.childNodes[i], true));         }      };	}	Document.prototype.__defineGetter__( "xml",	   function () {		   return (new XMLSerializer()).serializeToString(this);	   }	 );}document.getElementsByTagAndClassName = function(tagName, className) {  if ( tagName == null )     tagName = '*';  var children = document.getElementsByTagName(tagName) || document.all;  var elements = new Array();  if ( className == null )    return children;  for (var i = 0; i < children.length; i++) {    var child = children[i];    var classNames = child.className.split(' ');    for (var j = 0; j < classNames.length; j++) {      if (classNames[j] == className) {        elements.push(child);        break;      }    }  }  return elements;}//-------------------- ricoAccordion.jsRico.Accordion = Class.create();Rico.Accordion.prototype = {   initialize: function(container, options) {      this.container            = $(container);      this.lastExpandedTab      = null;      this.accordionTabs        = new Array();      this.setOptions(options);      this._attachBehaviors();      this.container.style.borderBottom = '1px solid ' + this.options.borderColor;      // set the initial visual state...      for ( var i=1 ; i < this.accordionTabs.length ; i++ )      {         this.accordionTabs[i].collapse();         this.accordionTabs[i].content.style.display = 'none';      }      this.lastExpandedTab = this.accordionTabs[0];      this.lastExpandedTab.content.style.height = this.options.panelHeight + "px";      this.lastExpandedTab.showExpanded();      this.lastExpandedTab.titleBar.style.fontWeight = this.options.expandedFontWeight;   },   setOptions: function(options) {      this.options = {         expandedBg          : '#63699c',         hoverBg             : '#63699c',         collapsedBg         : '#6b79a5',         expandedTextColor   : '#ffffff',         expandedFontWeight  : 'bold',         hoverTextColor      : '#ffffff',         collapsedTextColor  : '#ced7ef',         collapsedFontWeight : 'normal',         hoverTextColor      : '#ffffff',         borderColor         : '#1f669b',         panelHeight         : 200,         onHideTab           : null,         onShowTab           : null      }.extend(options || {});   },   showTabByIndex: function( anIndex, animate ) {      var doAnimate = arguments.length == 1 ? true : animate;      this.showTab( this.accordionTabs[anIndex], doAnimate );   },   showTab: function( accordionTab, animate ) {      var doAnimate = arguments.length == 1 ? true : animate;      if ( this.options.onHideTab )         this.options.onHideTab(this.lastExpandedTab);      this.lastExpandedTab.showCollapsed();       var accordion = this;      var lastExpandedTab = this.lastExpandedTab;      this.lastExpandedTab.content.style.height = (this.options.panelHeight - 1) + 'px';      accordionTab.content.style.display = '';      accordionTab.titleBar.style.fontWeight = this.options.expandedFontWeight;      if ( doAnimate ) {         new Effect.AccordionSize( this.lastExpandedTab.content,                                   accordionTab.content,                                   1,                                   this.options.panelHeight,                                   100, 10,                                   { complete: function() {accordion.showTabDone(lastExpandedTab)} } );         this.lastExpandedTab = accordionTab;      }      else {         this.lastExpandedTab.content.style.height = "1px";         accordionTab.content.style.height = this.options.panelHeight + "px";         this.lastExpandedTab = accordionTab;         this.showTabDone(lastExpandedTab);      }   },   showTabDone: function(collapsedTab) {      collapsedTab.content.style.display = 'none';      this.lastExpandedTab.showExpanded();      if ( this.options.onShowTab )         this.options.onShowTab(this.lastExpandedTab);   },   _attachBehaviors: function() {      var panels = this._getDirectChildrenByTag(this.container, 'DIV');      for ( var i = 0 ; i < panels.length ; i++ ) {         var tabChildren = this._getDirectChildrenByTag(panels[i],'DIV');         if ( tabChildren.length != 2 )            continue; // unexpected         var tabTitleBar   = tabChildren[0];         var tabContentBox = tabChildren[1];         this.accordionTabs.push( new Rico.Accordion.Tab(this,tabTitleBar,tabContentBox) );      }   },   _getDirectChildrenByTag: function(e, tagName) {      var kids = new Array();      var allKids = e.childNodes;      for( var i = 0 ; i < allKids.length ; i++ )         if ( allKids[i] && allKids[i].tagName && allKids[i].tagName == tagName )            kids.push(allKids[i]);      return kids;   }};Rico.Accordion.Tab = Class.create();Rico.Accordion.Tab.prototype = {   initialize: function(accordion, titleBar, content) {      this.accordion = accordion;      this.titleBar  = titleBar;      this.content   = content;      this._attachBehaviors();   },   collapse: function() {      this.showCollapsed();      this.content.style.height = "1px";   },   showCollapsed: function() {      this.expanded = false;      this.titleBar.style.backgroundColor = this.accordion.options.collapsedBg;      this.titleBar.style.color           = this.accordion.options.collapsedTextColor;      this.titleBar.style.fontWeight      = this.accordion.options.collapsedFontWeight;      this.content.style.overflow = "hidden";   },   showExpanded: function() {      this.expanded = true;      this.titleBar.style.backgroundColor = this.accordion.options.expandedBg;      this.titleBar.style.color           = this.accordion.options.expandedTextColor;      this.content.style.overflow         = "visible";   },   titleBarClicked: function(e) {      if ( this.accordion.lastExpandedTab == this )         return;      this.accordion.showTab(this);   },   hover: function(e) {		this.titleBar.style.backgroundColor = this.accordion.options.hoverBg;		this.titleBar.style.color           = this.accordion.options.hoverTextColor;   },   unhover: function(e) {      if ( this.expanded ) {         this.titleBar.style.backgroundColor = this.accordion.options.expandedBg;         this.titleBar.style.color           = this.accordion.options.expandedTextColor;      }      else {         this.titleBar.style.backgroundColor = this.accordion.options.collapsedBg;         this.titleBar.style.color           = this.accordion.options.collapsedTextColor;      }   },   _attachBehaviors: function() {      this.content.style.border = "1px solid " + this.accordion.options.borderColor;      this.content.style.borderTopWidth    = "0px";      this.content.style.borderBottomWidth = "0px";      this.content.style.margin            = "0px";      this.titleBar.onclick     = this.titleBarClicked.bindAsEventListener(this);      this.titleBar.onmouseover = this.hover.bindAsEventListener(this);      this.titleBar.onmouseout  = this.unhover.bindAsEventListener(this);   }};//-------------------- ricoAjaxEngine.jsRico.AjaxEngine = Class.create();Rico.AjaxEngine.prototype = {   initialize: function() {      this.ajaxElements = new Array();      this.ajaxObjects  = new Array();      this.requestURLS  = new Array();   },   registerAjaxElement: function( anId, anElement ) {      if ( arguments.length == 1 )         anElement = $(anId);      this.ajaxElements[anId] = anElement;   },   registerAjaxObject: function( anId, anObject ) {      this.ajaxObjects[anId] = anObject;   },   registerRequest: function (requestLogicalName, requestURL) {      this.requestURLS[requestLogicalName] = requestURL;   },   sendRequest: function(requestName) {      var requestURL = this.requestURLS[requestName];      if ( requestURL == null )         return;      var queryString = "";            if ( arguments.length > 1 ) {      	 if(typeof(arguments[1]) == "object" && arguments[1].length != undefined) {	      	 queryString = this._createQueryString(arguments[1], 0);      	 }      	 else {	         queryString = this._createQueryString(arguments, 1);	     }                }                   new Ajax.Request(requestURL, this._requestOptions(queryString));   },   sendRequestWithData: function(requestName, xmlDocument) {      var requestURL = this.requestURLS[requestName];      if ( requestURL == null )         return;      var queryString = "";      if ( arguments.length > 2 ) {      	 if(typeof(arguments[2]) == "object" && arguments[2].length != undefined) {	      	 queryString = this._createQueryString(arguments[2], 0);      	 }      	 else {	         queryString = this._createQueryString(arguments, 2);	     }                }                   new Ajax.Request(requestURL + "?" + queryString, this._requestOptions(null,xmlDocument));   },   sendRequestAndUpdate: function(requestName,container,options) {      var requestURL = this.requestURLS[requestName];      if ( requestURL == null )         return;      var queryString = "";      if ( arguments.length > 3 ) {      	 if(typeof(arguments[3]) == "object" && arguments[3].length != undefined) {	      	 queryString = this._createQueryString(arguments[3], 0);      	 }      	 else {	         queryString = this._createQueryString(arguments, 3);	     }                }                     var updaterOptions = this._requestOptions(queryString);      updaterOptions.onComplete = null;      updaterOptions.extend(options);      new Ajax.Updater(container, requestURL, updaterOptions);   },   sendRequestWithDataAndUpdate: function(requestName,xmlDocument,container,options) {      var requestURL = this.requestURLS[requestName];      if ( requestURL == null )         return;      var queryString = "";      if ( arguments.length > 4 ) {      	 if(typeof(arguments[4]) == "object" && arguments[4].length != undefined) {	      	 queryString = this._createQueryString(arguments[4], 0);      	 }      	 else {	         queryString = this._createQueryString(arguments, 4);	     }                }      var updaterOptions = this._requestOptions(queryString,xmlDocument);      updaterOptions.onComplete = null;      updaterOptions.extend(options);      new Ajax.Updater(container, requestURL + "?" + queryString, updaterOptions);   },   // Private -- not part of intended engine API --------------------------------------------------------------------   _requestOptions: function(queryString,xmlDoc) {      var self = this;      var requestHeaders = ['X-Rico-Version', Rico.Version ];      var sendMethod = "post"      if ( arguments[1] )         requestHeaders.push( 'Content-type', 'text/xml' );      else         sendMethod = "get";

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久麻豆一区二区| 日韩一级视频免费观看在线| 亚洲欧美另类小说| 欧美日韩精品久久久| 亚洲一区中文在线| 欧美日韩精品一区二区| 日韩黄色免费网站| 亚洲国产精品二十页| 在线精品国精品国产尤物884a| 日韩激情av在线| 日韩美女视频一区| 欧美刺激午夜性久久久久久久| 国产成都精品91一区二区三 | 色婷婷综合五月| 另类小说图片综合网| 日韩理论在线观看| 欧美tickling网站挠脚心| 国产成人av福利| 肉色丝袜一区二区| 中文字幕中文字幕在线一区| 欧美久久久久久蜜桃| 国产1区2区3区精品美女| 亚洲激情综合网| 久久久精品中文字幕麻豆发布| 欧美综合久久久| 国产成人综合自拍| 日韩影院精彩在线| 中文字幕一区二区三区不卡在线| 欧美一区二区视频免费观看| 成人app在线观看| 久久www免费人成看片高清| 一区二区三区中文字幕电影| 久久精品视频一区二区三区| 欧美精品久久久久久久多人混战 | 在线一区二区三区| 国产一区二区美女| 婷婷国产v国产偷v亚洲高清| 国产精品九色蝌蚪自拍| 日韩欧美色综合网站| 欧美日韩一级二级| 色综合天天综合色综合av| 国产乱码一区二区三区| 免费欧美在线视频| 视频一区在线视频| 亚洲一级二级在线| 一区二区高清免费观看影视大全 | 久久久久久久综合色一本| 91精品国产综合久久精品| 欧美色区777第一页| 一本色道亚洲精品aⅴ| jiyouzz国产精品久久| 国产精品羞羞答答xxdd| 精久久久久久久久久久| 免费久久精品视频| 日本不卡一区二区三区高清视频| 亚洲成av人片在线观看无码| 亚洲影视在线观看| 一区二区三区免费网站| 亚洲欧洲av另类| 亚洲视频在线一区二区| 亚洲欧美另类图片小说| 一区二区三区免费| 亚洲国产日产av| 亚洲第一二三四区| 日韩在线一二三区| 日本v片在线高清不卡在线观看| 午夜影院久久久| 亚洲乱码国产乱码精品精98午夜| 亚洲日本乱码在线观看| 亚洲精品免费在线观看| 一区二区高清在线| 亚洲一区精品在线| 天天亚洲美女在线视频| 日韩精品欧美精品| 六月丁香婷婷色狠狠久久| 国内精品国产成人国产三级粉色| 国产一区二区视频在线| 国产成人丝袜美腿| 97精品电影院| 99久免费精品视频在线观看| 色先锋资源久久综合| 欧美日韩国产影片| 日韩美女视频在线| 国产婷婷色一区二区三区四区| 国产精品三级av| 亚洲精品久久久蜜桃| 天天爽夜夜爽夜夜爽精品视频| 一区二区三区中文在线| 日韩成人精品视频| 国产成人亚洲精品青草天美| av成人老司机| 欧美日韩国产高清一区二区| 精品国产91洋老外米糕| 国产精品二三区| 婷婷开心久久网| 国产成人av电影在线观看| 欧美精品欧美精品系列| 中文字幕一区三区| 奇米888四色在线精品| 99麻豆久久久国产精品免费优播| 日韩精品一区在线观看| 亚洲五码中文字幕| 成人在线视频首页| 欧美成人女星排行榜| 亚洲va韩国va欧美va精品| 成人av资源在线观看| 精品久久久久香蕉网| 天堂av在线一区| 色丁香久综合在线久综合在线观看| 日韩精品一区在线| 亚洲成人1区2区| 色域天天综合网| 国产精品短视频| 岛国一区二区三区| 精品国产凹凸成av人导航| 日韩成人一区二区三区在线观看| 91福利国产精品| 日韩理论片一区二区| 成人动漫一区二区| 国产偷国产偷亚洲高清人白洁| 久久疯狂做爰流白浆xx| 欧美美女视频在线观看| 亚洲午夜三级在线| 欧洲精品中文字幕| 一区二区三区在线看| 99久久婷婷国产综合精品电影| 日本一区二区免费在线| 国产很黄免费观看久久| 久久午夜电影网| 寂寞少妇一区二区三区| 日韩精品一区二区在线观看| 日本最新不卡在线| 日韩亚洲欧美在线观看| 日日夜夜免费精品视频| 欧美久久久久免费| 日韩av中文字幕一区二区| 欧美一区二区三区在| 日韩成人一区二区三区在线观看| 5566中文字幕一区二区电影| 日韩高清在线不卡| 日韩一级片在线观看| 久色婷婷小香蕉久久| 久久奇米777| 成人午夜碰碰视频| 亚洲欧美怡红院| 91福利视频网站| 午夜影院久久久| 精品日本一线二线三线不卡| 久久不见久久见免费视频7| 2021久久国产精品不只是精品| 国产综合色在线| 国产免费观看久久| 色哟哟亚洲精品| 天堂一区二区在线免费观看| 日韩午夜电影av| 国产成人精品1024| 亚洲欧洲99久久| 欧美日韩和欧美的一区二区| 蜜桃传媒麻豆第一区在线观看| 精品久久久久香蕉网| 成人午夜视频在线观看| 亚洲美女电影在线| 5月丁香婷婷综合| 国产精品夜夜嗨| 亚洲男人天堂av网| 91麻豆精品国产91久久久资源速度| 久久精品久久精品| 国产精品私人影院| 精品视频一区 二区 三区| 激情久久五月天| 亚洲日本丝袜连裤袜办公室| 在线不卡中文字幕| 国产成人精品亚洲777人妖| 亚洲精品成人精品456| 日韩西西人体444www| 波波电影院一区二区三区| 亚洲成av人片在线观看| 久久精品一区二区三区四区| 色先锋aa成人| 国内一区二区视频| 尤物在线观看一区| 精品国产sm最大网站免费看| 日本二三区不卡| 狠狠色丁香婷婷综合| 亚洲精品视频一区二区| 2021久久国产精品不只是精品| 日本精品一区二区三区高清 | 久久精品视频在线看| 在线观看91视频| 风间由美一区二区三区在线观看| 亚洲精品免费在线观看| 亚洲精品在线免费播放| 欧美色视频在线| 成人免费看的视频| 麻豆国产精品777777在线| 综合激情成人伊人| 久久丝袜美腿综合| 欧美精品高清视频| 一本大道综合伊人精品热热| 国产精品亚洲专一区二区三区|