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

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

?? rico.js

?? grails用戶使用指南
?? 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";

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品一二三在| 麻豆成人久久精品二区三区红 | 久久久久久毛片| 国产suv一区二区三区88区| 中文字幕久久午夜不卡| 97久久精品人人做人人爽50路 | 国产亚洲一二三区| fc2成人免费人成在线观看播放| 亚洲丝袜精品丝袜在线| 欧美性大战久久久久久久蜜臀| 视频一区在线播放| 精品国产第一区二区三区观看体验 | 日韩欧美一级二级| 国产精品77777| 亚洲综合免费观看高清完整版在线| 欧美午夜电影在线播放| 精品一区二区三区免费毛片爱| 日本一区二区免费在线| 欧美亚洲一区三区| 国产裸体歌舞团一区二区| 亚洲欧美日韩在线| 亚洲免费电影在线| 欧美成人激情免费网| 成人动漫视频在线| 日本不卡视频一二三区| 欧美极品美女视频| 91精品欧美一区二区三区综合在 | 最新久久zyz资源站| 欧美日韩国产片| 激情久久五月天| 亚洲午夜精品在线| 国产精品区一区二区三区| 欧美色涩在线第一页| 国产成人精品aa毛片| 亚洲午夜av在线| 欧美激情综合五月色丁香小说| 91国偷自产一区二区三区成为亚洲经典 | 另类调教123区| 亚洲情趣在线观看| 久久老女人爱爱| 在线成人免费视频| 色成年激情久久综合| 国产成人啪午夜精品网站男同| 亚洲成av人影院| 自拍偷在线精品自拍偷无码专区| 精品不卡在线视频| 91精品国产91综合久久蜜臀| 91麻豆免费视频| 国产91丝袜在线播放九色| 免费成人av在线播放| 国产成人综合精品三级| 亚洲高清免费观看| 亚洲免费在线视频一区 二区| www日韩大片| 日韩一级片在线观看| 欧美色成人综合| 在线观看一区二区精品视频| av电影在线观看不卡| 国产剧情av麻豆香蕉精品| 日韩有码一区二区三区| 亚洲国产精品一区二区久久| 亚洲欧美经典视频| 亚洲日本免费电影| 国产精品女同互慰在线看| 久久久久久久综合色一本| 亚洲精品一区二区三区在线观看 | 日韩一区二区精品葵司在线| 欧美嫩在线观看| 欧美日韩黄色一区二区| 欧美私人免费视频| 色婷婷综合久久久久中文一区二区| 成人av免费在线播放| gogogo免费视频观看亚洲一| 波多野结衣的一区二区三区| 成人久久视频在线观看| 成人精品gif动图一区| 成人一区二区三区视频在线观看| 国产成人精品www牛牛影视| 国产成人精品一区二| 高清不卡在线观看| 成人免费的视频| 91色九色蝌蚪| 欧美又粗又大又爽| 欧美日本一区二区在线观看| 91精品国产日韩91久久久久久| 91精品国产色综合久久ai换脸| 日韩一区二区三区在线| xvideos.蜜桃一区二区| 国产精品毛片大码女人| 亚洲视频在线观看一区| 亚洲综合成人在线| 奇米一区二区三区| 国产精品一区二区黑丝 | 色屁屁一区二区| 欧美午夜一区二区| 欧美一区二区三区四区高清| 精品日韩在线观看| 国产精品国产精品国产专区不蜜| 亚洲情趣在线观看| 青青草精品视频| 高清shemale亚洲人妖| 色婷婷一区二区| 正在播放亚洲一区| 国产视频911| 亚洲午夜一区二区三区| 国产一区二区三区四区在线观看| 99久久久精品免费观看国产蜜| 欧美久久婷婷综合色| 久久精品一区二区三区四区| 亚洲青青青在线视频| 人人超碰91尤物精品国产| 国产激情一区二区三区| 91福利资源站| 精品伦理精品一区| 一区二区三区在线视频免费| 美国精品在线观看| 91在线观看高清| 精品国产免费人成在线观看| 亚洲欧美另类小说视频| 狠狠色狠狠色综合系列| 欧美优质美女网站| 中文字幕av一区二区三区| 日韩激情一二三区| 不卡的av在线| 精品乱人伦小说| 亚洲成a人v欧美综合天堂| 大白屁股一区二区视频| 日韩欧美一区二区三区在线| 亚洲男人的天堂av| 国产aⅴ综合色| 日韩欧美一区二区不卡| 亚洲一区二区精品久久av| 国产 日韩 欧美大片| 日韩精品专区在线影院重磅| 一区二区三区中文字幕电影| 国产精品一二三区| 日韩精品一区二区三区视频 | 日本va欧美va精品发布| 91污片在线观看| 日本一区二区不卡视频| 国内精品久久久久影院薰衣草| 欧美日韩一区国产| 亚洲三级在线观看| 成人av动漫在线| 中文字幕国产一区| 国产成人免费视频网站高清观看视频 | 91久久精品日日躁夜夜躁欧美| 国产亚洲欧洲一区高清在线观看| 美女性感视频久久| 777亚洲妇女| 亚洲一区二区三区四区五区黄| 91社区在线播放| 1024国产精品| av午夜一区麻豆| 国产精品久久久久影院亚瑟| 国产激情视频一区二区三区欧美| 欧美一卡2卡3卡4卡| 日韩精品乱码免费| 7777精品伊人久久久大香线蕉完整版 | 欧美人体做爰大胆视频| 亚洲免费观看在线视频| 色综合亚洲欧洲| 亚洲美女屁股眼交3| 色悠悠久久综合| 夜夜嗨av一区二区三区四季av| 色诱视频网站一区| 亚洲综合色丁香婷婷六月图片| 91精品办公室少妇高潮对白| 一区二区在线观看免费| 欧洲精品在线观看| 亚洲线精品一区二区三区| 欧美日韩国产一二三| 麻豆专区一区二区三区四区五区| 日韩一区二区在线观看视频播放| 久久国产人妖系列| 久久久久久免费网| 91丨九色丨黑人外教| 亚洲一区二区四区蜜桃| 欧美日韩精品二区第二页| 免费av成人在线| 国产片一区二区三区| 99久久精品费精品国产一区二区| 一区二区三区精品| 7777精品伊人久久久大香线蕉 | 午夜精彩视频在线观看不卡| 91 com成人网| 懂色中文一区二区在线播放| 国产精品不卡视频| 欧美视频在线不卡| 国内久久婷婷综合| 国产精品国产自产拍高清av王其| 在线精品视频一区二区| 免费高清在线视频一区·| 久久色中文字幕| 91天堂素人约啪| 日韩二区在线观看| 中文字幕av不卡| 欧美精品99久久久**| 国产精品一卡二卡| 亚洲一区二区精品3399|