亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
国产在线视频精品一区| 成人免费视频视频| 亚洲欧洲av另类| 日韩一区二区三区视频| 92精品国产成人观看免费| 麻豆精品一二三| 亚洲一区二区视频在线观看| 久久久久久久久蜜桃| 欧美日韩性生活| 91丝袜美腿高跟国产极品老师 | 久久综合国产精品| 欧美三级电影在线看| 成人性视频免费网站| 男男gaygay亚洲| 亚洲自拍偷拍av| 国产精品超碰97尤物18| 久久久久久亚洲综合| 欧美一区二区三区日韩| 欧美亚洲国产一区二区三区| 成人免费看的视频| 狠狠色丁香久久婷婷综合_中| 亚洲午夜精品一区二区三区他趣| 国产精品美女久久久久久2018| 精品国内片67194| 欧美一区二区黄色| 欧美福利视频导航| 欧美日韩综合不卡| 在线精品视频小说1| 99久久精品费精品国产一区二区| 国产成人在线电影| 国产精品一区二区三区四区| 精品一区二区免费看| 日韩av一区二区三区| 亚洲成a天堂v人片| 亚洲成人av资源| 午夜精品久久久久久不卡8050| 亚洲蜜臀av乱码久久精品蜜桃| 日韩美女精品在线| 亚洲欧美一区二区三区久本道91| 日本一区二区三区四区在线视频| 久久九九久精品国产免费直播| 精品久久久久久久久久久久久久久 | 国产精品久久久久久久久图文区| 久久久久久久久97黄色工厂| 久久蜜桃香蕉精品一区二区三区| 2020国产精品自拍| 国产婷婷色一区二区三区四区| 久久亚区不卡日本| 久久久久国产免费免费| 中文字幕精品一区| 最新成人av在线| 亚洲国产一区二区视频| 婷婷久久综合九色国产成人| 亚洲va在线va天堂| 精品系列免费在线观看| 国内国产精品久久| 岛国精品在线播放| 色先锋久久av资源部| 欧洲视频一区二区| 91精品国产麻豆国产自产在线| 久久综合中文字幕| 国产精品免费网站在线观看| 亚洲视频1区2区| 五月天欧美精品| 国产精品亚洲第一| 一本到高清视频免费精品| 欧美日韩一区二区欧美激情 | 精品乱人伦一区二区三区| 精品sm在线观看| 亚洲欧洲日产国产综合网| 亚洲第一福利视频在线| 激情综合亚洲精品| caoporm超碰国产精品| 欧美色电影在线| 久久久亚洲精华液精华液精华液| 亚洲婷婷国产精品电影人久久| 水蜜桃久久夜色精品一区的特点| 黄页网站大全一区二区| 不卡视频免费播放| 欧美人动与zoxxxx乱| 久久久久高清精品| 亚洲风情在线资源站| 国产91对白在线观看九色| 色妹子一区二区| 精品少妇一区二区三区在线视频| 亚洲欧美综合网| 久久精品国产亚洲5555| 在线看不卡av| 中文字幕第一区综合| 日韩激情av在线| 色哟哟国产精品免费观看| 精品国产一区二区三区av性色| 亚洲精品视频在线观看网站| 国内成人自拍视频| 5858s免费视频成人| 中文字幕亚洲精品在线观看| 久久99热99| 欧美日韩免费观看一区三区| 欧美激情一区不卡| 免费的成人av| 日本国产一区二区| 中文字幕乱码一区二区免费| 蜜臀av性久久久久蜜臀aⅴ四虎| 床上的激情91.| 精品久久久三级丝袜| 亚洲成av人片观看| 91在线播放网址| 国产精品丝袜久久久久久app| 精品中文字幕一区二区| 欧美日韩午夜在线| 亚洲一级二级三级在线免费观看| 成人免费av在线| 久久影视一区二区| 狂野欧美性猛交blacked| 欧美日韩亚洲综合一区| 一区二区三区中文字幕精品精品| 成人精品视频一区二区三区尤物| 欧美精品一区二区三区很污很色的| 亚洲国产精品久久人人爱| 97精品国产露脸对白| 欧美国产精品专区| 粉嫩aⅴ一区二区三区四区五区| 精品国产一区二区三区久久久蜜月| 日韩高清在线一区| 欧美精选一区二区| 亚洲国产一区二区a毛片| 91污片在线观看| 亚洲三级电影网站| 97se亚洲国产综合自在线观| 国产精品沙发午睡系列990531| 国产成人免费在线观看| 久久久亚洲欧洲日产国码αv| 精品一区二区三区免费播放| 精品国产一区二区亚洲人成毛片| 久久er99精品| 久久久久久久久岛国免费| 国产精品1024| 中文字幕五月欧美| 色婷婷综合视频在线观看| 一区二区三区在线看| 欧洲人成人精品| 日日摸夜夜添夜夜添亚洲女人| 欧美视频日韩视频在线观看| 亚洲午夜免费电影| 欧美一卡2卡三卡4卡5免费| 日韩精品色哟哟| 精品日韩一区二区三区| 国产成人免费视频网站 | 亚洲成av人片一区二区| 91精品欧美久久久久久动漫| 奇米在线7777在线精品 | 亚洲成人高清在线| 日韩免费成人网| 国产电影精品久久禁18| 中文字幕色av一区二区三区| 在线观看亚洲精品| 欧美aⅴ一区二区三区视频| 亚洲精品一区二区三区精华液| 国产69精品久久久久毛片| 亚洲色图在线播放| 欧美日韩成人综合在线一区二区 | 亚洲福利一二三区| 欧美不卡一二三| 成人精品视频网站| 亚洲成人免费视| 精品国产91乱码一区二区三区 | 亚洲在线观看免费视频| 欧美一级艳片视频免费观看| 国内成人免费视频| 亚洲欧洲日韩av| 欧美一区午夜精品| 国产精品一卡二卡在线观看| 亚洲欧洲综合另类在线 | 亚洲免费av高清| 欧美大片在线观看| 99精品1区2区| 免费不卡在线观看| 亚洲欧美一区二区在线观看| 欧美精品tushy高清| 成人在线综合网站| 午夜激情久久久| 国产色爱av资源综合区| 欧美无人高清视频在线观看| 国产一区二区在线看| 亚洲欧美二区三区| 精品国产精品网麻豆系列| 在线看一区二区| 大胆亚洲人体视频| 青青草国产精品97视觉盛宴| 中文字幕字幕中文在线中不卡视频| 日韩欧美国产电影| 色999日韩国产欧美一区二区| 极品美女销魂一区二区三区免费| 一区二区三区在线免费播放| 国产欧美一区二区精品仙草咪| 欧美日韩美少妇| 色视频欧美一区二区三区| 国产白丝精品91爽爽久久| 久久精品国产一区二区三| 亚洲一区二区三区四区中文字幕|