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

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

?? controls.js

?? WordPress是一個Blog程序,用它你可以架設(shè)完全屬于你自己的Blog. 而WordPress現(xiàn)在的應(yīng)用又不僅僅只是在Blog方面,因?yàn)槠鋸?qiáng)大的擴(kuò)展性,部分網(wǎng)站甚至已經(jīng)開始使用WordPress
?? JS
?? 第 1 頁 / 共 3 頁
字號:
// script.aculo.us controls.js v1.8.0, Tue Nov 06 15:01:40 +0300 2007// Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)//           (c) 2005-2007 Ivan Krstic (http://blogs.law.harvard.edu/ivan)//           (c) 2005-2007 Jon Tirsen (http://www.tirsen.com)// Contributors://  Richard Livsey//  Rahul Bhargava//  Rob Wills// // script.aculo.us is freely distributable under the terms of an MIT-style license.// For details, see the script.aculo.us web site: http://script.aculo.us/// Autocompleter.Base handles all the autocompletion functionality // that's independent of the data source for autocompletion. This// includes drawing the autocompletion menu, observing keyboard// and mouse events, and similar.//// Specific autocompleters need to provide, at the very least, // a getUpdatedChoices function that will be invoked every time// the text inside the monitored textbox changes. This method // should get the text for which to provide autocompletion by// invoking this.getToken(), NOT by directly accessing// this.element.value. This is to allow incremental tokenized// autocompletion. Specific auto-completion logic (AJAX, etc)// belongs in getUpdatedChoices.//// Tokenized incremental autocompletion is enabled automatically// when an autocompleter is instantiated with the 'tokens' option// in the options parameter, e.g.:// new Ajax.Autocompleter('id','upd', '/url/', { tokens: ',' });// will incrementally autocomplete with a comma as the token.// Additionally, ',' in the above example can be replaced with// a token array, e.g. { tokens: [',', '\n'] } which// enables autocompletion on multiple tokens. This is most // useful when one of the tokens is \n (a newline), as it // allows smart autocompletion after linebreaks.if(typeof Effect == 'undefined')  throw("controls.js requires including script.aculo.us' effects.js library");var Autocompleter = { }Autocompleter.Base = Class.create({  baseInitialize: function(element, update, options) {    element          = $(element)    this.element     = element;     this.update      = $(update);      this.hasFocus    = false;     this.changed     = false;     this.active      = false;     this.index       = 0;         this.entryCount  = 0;    this.oldElementValue = this.element.value;    if(this.setOptions)      this.setOptions(options);    else      this.options = options || { };    this.options.paramName    = this.options.paramName || this.element.name;    this.options.tokens       = this.options.tokens || [];    this.options.frequency    = this.options.frequency || 0.4;    this.options.minChars     = this.options.minChars || 1;    this.options.onShow       = this.options.onShow ||       function(element, update){         if(!update.style.position || update.style.position=='absolute') {          update.style.position = 'absolute';          Position.clone(element, update, {            setHeight: false,             offsetTop: element.offsetHeight          });        }        Effect.Appear(update,{duration:0.15});      };    this.options.onHide = this.options.onHide ||       function(element, update){ new Effect.Fade(update,{duration:0.15}) };    if(typeof(this.options.tokens) == 'string')       this.options.tokens = new Array(this.options.tokens);    // Force carriage returns as token delimiters anyway    if (!this.options.tokens.include('\n'))      this.options.tokens.push('\n');    this.observer = null;        this.element.setAttribute('autocomplete','off');    Element.hide(this.update);    Event.observe(this.element, 'blur', this.onBlur.bindAsEventListener(this));    Event.observe(this.element, 'keypress', this.onKeyPress.bindAsEventListener(this));  },  show: function() {    if(Element.getStyle(this.update, 'display')=='none') this.options.onShow(this.element, this.update);    if(!this.iefix &&       (Prototype.Browser.IE) &&      (Element.getStyle(this.update, 'position')=='absolute')) {      new Insertion.After(this.update,        '<iframe id="' + this.update.id + '_iefix" '+       'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" ' +       'src="javascript:false;" frameborder="0" scrolling="no"></iframe>');      this.iefix = $(this.update.id+'_iefix');    }    if(this.iefix) setTimeout(this.fixIEOverlapping.bind(this), 50);  },    fixIEOverlapping: function() {    Position.clone(this.update, this.iefix, {setTop:(!this.update.style.height)});    this.iefix.style.zIndex = 1;    this.update.style.zIndex = 2;    Element.show(this.iefix);  },  hide: function() {    this.stopIndicator();    if(Element.getStyle(this.update, 'display')!='none') this.options.onHide(this.element, this.update);    if(this.iefix) Element.hide(this.iefix);  },  startIndicator: function() {    if(this.options.indicator) Element.show(this.options.indicator);  },  stopIndicator: function() {    if(this.options.indicator) Element.hide(this.options.indicator);  },  onKeyPress: function(event) {    if(this.active)      switch(event.keyCode) {       case Event.KEY_TAB:       case Event.KEY_RETURN:         this.selectEntry();         Event.stop(event);       case Event.KEY_ESC:         this.hide();         this.active = false;         Event.stop(event);         return;       case Event.KEY_LEFT:       case Event.KEY_RIGHT:         return;       case Event.KEY_UP:         this.markPrevious();         this.render();         if(Prototype.Browser.WebKit) Event.stop(event);         return;       case Event.KEY_DOWN:         this.markNext();         this.render();         if(Prototype.Browser.WebKit) Event.stop(event);         return;      }     else        if(event.keyCode==Event.KEY_TAB || event.keyCode==Event.KEY_RETURN ||          (Prototype.Browser.WebKit > 0 && event.keyCode == 0)) return;    this.changed = true;    this.hasFocus = true;    if(this.observer) clearTimeout(this.observer);      this.observer =         setTimeout(this.onObserverEvent.bind(this), this.options.frequency*1000);  },  activate: function() {    this.changed = false;    this.hasFocus = true;    this.getUpdatedChoices();  },  onHover: function(event) {    var element = Event.findElement(event, 'LI');    if(this.index != element.autocompleteIndex)     {        this.index = element.autocompleteIndex;        this.render();    }    Event.stop(event);  },    onClick: function(event) {    var element = Event.findElement(event, 'LI');    this.index = element.autocompleteIndex;    this.selectEntry();    this.hide();  },    onBlur: function(event) {    // needed to make click events working    setTimeout(this.hide.bind(this), 250);    this.hasFocus = false;    this.active = false;       },     render: function() {    if(this.entryCount > 0) {      for (var i = 0; i < this.entryCount; i++)        this.index==i ?           Element.addClassName(this.getEntry(i),"selected") :           Element.removeClassName(this.getEntry(i),"selected");      if(this.hasFocus) {         this.show();        this.active = true;      }    } else {      this.active = false;      this.hide();    }  },    markPrevious: function() {    if(this.index > 0) this.index--      else this.index = this.entryCount-1;    this.getEntry(this.index).scrollIntoView(true);  },    markNext: function() {    if(this.index < this.entryCount-1) this.index++      else this.index = 0;    this.getEntry(this.index).scrollIntoView(false);  },    getEntry: function(index) {    return this.update.firstChild.childNodes[index];  },    getCurrentEntry: function() {    return this.getEntry(this.index);  },    selectEntry: function() {    this.active = false;    this.updateElement(this.getCurrentEntry());  },  updateElement: function(selectedElement) {    if (this.options.updateElement) {      this.options.updateElement(selectedElement);      return;    }    var value = '';    if (this.options.select) {      var nodes = $(selectedElement).select('.' + this.options.select) || [];      if(nodes.length>0) value = Element.collectTextNodes(nodes[0], this.options.select);    } else      value = Element.collectTextNodesIgnoreClass(selectedElement, 'informal');        var bounds = this.getTokenBounds();    if (bounds[0] != -1) {      var newValue = this.element.value.substr(0, bounds[0]);      var whitespace = this.element.value.substr(bounds[0]).match(/^\s+/);      if (whitespace)        newValue += whitespace[0];      this.element.value = newValue + value + this.element.value.substr(bounds[1]);    } else {      this.element.value = value;    }    this.oldElementValue = this.element.value;    this.element.focus();        if (this.options.afterUpdateElement)      this.options.afterUpdateElement(this.element, selectedElement);  },  updateChoices: function(choices) {    if(!this.changed && this.hasFocus) {      this.update.innerHTML = choices;      Element.cleanWhitespace(this.update);      Element.cleanWhitespace(this.update.down());      if(this.update.firstChild && this.update.down().childNodes) {        this.entryCount =           this.update.down().childNodes.length;        for (var i = 0; i < this.entryCount; i++) {          var entry = this.getEntry(i);          entry.autocompleteIndex = i;          this.addObservers(entry);        }      } else {         this.entryCount = 0;      }      this.stopIndicator();      this.index = 0;            if(this.entryCount==1 && this.options.autoSelect) {        this.selectEntry();        this.hide();      } else {        this.render();      }    }  },  addObservers: function(element) {    Event.observe(element, "mouseover", this.onHover.bindAsEventListener(this));    Event.observe(element, "click", this.onClick.bindAsEventListener(this));  },  onObserverEvent: function() {    this.changed = false;       this.tokenBounds = null;    if(this.getToken().length>=this.options.minChars) {      this.getUpdatedChoices();    } else {      this.active = false;      this.hide();    }    this.oldElementValue = this.element.value;  },  getToken: function() {    var bounds = this.getTokenBounds();    return this.element.value.substring(bounds[0], bounds[1]).strip();  },  getTokenBounds: function() {    if (null != this.tokenBounds) return this.tokenBounds;    var value = this.element.value;    if (value.strip().empty()) return [-1, 0];

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕综合网| 欧美成人一级视频| 亚洲欧美一区二区三区极速播放 | 91精品国产色综合久久| 亚洲精品美国一| 欧美视频日韩视频| 免费观看成人av| 久久综合九色综合欧美亚洲| 福利电影一区二区三区| 中文字幕一区二区三区视频 | 91看片淫黄大片一级| 亚洲免费伊人电影| 欧美色视频在线| 日本大胆欧美人术艺术动态| 精品欧美乱码久久久久久| 国产精品99久久久久| 中文字幕亚洲区| 欧美午夜一区二区| 精品中文字幕一区二区小辣椒| 日韩精品一区国产麻豆| 国产91精品在线观看| 亚洲精品第一国产综合野| 91精品国产欧美一区二区18| 国产精品白丝jk黑袜喷水| 一区二区三区欧美日韩| 日韩欧美在线综合网| 99国产欧美另类久久久精品| 亚洲妇熟xx妇色黄| 久久亚洲综合av| 欧美在线你懂的| 国产精品18久久久久久久久| 亚洲伦理在线免费看| 欧美第一区第二区| 色国产综合视频| 精品影视av免费| 亚洲综合偷拍欧美一区色| 日韩欧美第一区| www.亚洲色图| 九九**精品视频免费播放| 亚洲欧美激情小说另类| 欧美成人女星排名| 欧美吞精做爰啪啪高潮| 国产成人精品影院| 日欧美一区二区| 国产精品福利影院| 精品久久久久久久久久久久久久久久久 | 日本成人中文字幕在线视频| 国产精品乱人伦中文| 欧美xxxx老人做受| 欧美三电影在线| 99精品欧美一区二区蜜桃免费| 免费观看成人鲁鲁鲁鲁鲁视频| 一区二区三区日韩欧美| 中文字幕制服丝袜成人av| 精品美女被调教视频大全网站| 欧美性受xxxx| 91丨国产丨九色丨pron| 国产99精品在线观看| 国产中文字幕一区| 久久99精品国产麻豆婷婷 | 蜜臀国产一区二区三区在线播放| 亚洲私人黄色宅男| 亚洲国产成人一区二区三区| 欧美电视剧在线看免费| 7777精品伊人久久久大香线蕉| 色哟哟国产精品免费观看| 成人涩涩免费视频| 国产成人综合视频| 国产一区二区三区免费在线观看| 青青草国产成人av片免费| 日韩高清不卡在线| 视频一区二区欧美| 三级不卡在线观看| 日日夜夜免费精品| 日本网站在线观看一区二区三区 | 久久天堂av综合合色蜜桃网| 欧美一区二区三区不卡| 欧美妇女性影城| 欧美精品18+| 欧美丰满美乳xxx高潮www| 在线免费观看成人短视频| 色噜噜狠狠成人网p站| 日本韩国精品在线| 欧美午夜精品一区二区蜜桃| 欧美日韩一区久久| 在线不卡的av| 日韩欧美国产高清| 久久美女高清视频| 国产精品美女一区二区三区| 中文字幕一区二区不卡| 亚洲精品写真福利| 亚洲mv在线观看| 美女视频黄频大全不卡视频在线播放| 日本91福利区| 国产精品一区专区| 色诱亚洲精品久久久久久| 欧美三级电影精品| 精品国产一区二区在线观看| 国产精品毛片大码女人| 亚洲午夜久久久久| 久久99久久久久久久久久久| 国产成人免费视频精品含羞草妖精| 成人h动漫精品一区二| 欧美综合一区二区三区| 4438x亚洲最大成人网| 久久久久久久性| 亚洲日本在线天堂| 日本网站在线观看一区二区三区| 国产精品一二三区| 欧洲一区二区av| 久久综合成人精品亚洲另类欧美| 国产精品美女久久福利网站| 一区二区免费在线播放| 另类专区欧美蜜桃臀第一页| 成人h版在线观看| 欧美日韩高清影院| 欧美韩国日本一区| 香蕉加勒比综合久久| 国产成人av一区二区三区在线 | 久久99精品久久久久久国产越南| 成人av电影在线网| 欧美一二三四区在线| 国产精品伦理一区二区| 日本vs亚洲vs韩国一区三区| 成人看片黄a免费看在线| 91精品国产综合久久国产大片| 国产精品视频九色porn| 午夜精品福利在线| 91香蕉视频黄| 久久久精品综合| 视频一区在线播放| 99国内精品久久| 久久久久国产精品麻豆ai换脸 | 日韩美女视频19| 精品一区二区在线看| 91国偷自产一区二区三区成为亚洲经典| 日韩一区二区三区四区五区六区| 自拍偷在线精品自拍偷无码专区| 麻豆国产精品一区二区三区| 91黄视频在线| 国产精品久久久久影院亚瑟| 奇米精品一区二区三区四区| 日本韩国精品在线| 中文字幕一区二区三区av| 九一九一国产精品| 欧美电影在哪看比较好| 亚洲欧美电影一区二区| 丰满白嫩尤物一区二区| 久久中文字幕电影| 久久机这里只有精品| 777a∨成人精品桃花网| 一区二区三区在线播| av一区二区三区黑人| 国产清纯在线一区二区www| 久久国产精品免费| 91精品免费观看| 亚洲成人自拍偷拍| 91电影在线观看| 亚洲日本护士毛茸茸| 成人精品一区二区三区中文字幕| 久久综合九色综合欧美亚洲| 六月丁香婷婷久久| 亚洲精品在线电影| 极品少妇一区二区三区精品视频 | 国产永久精品大片wwwapp| 欧美一二三四在线| 久久国产精品99久久人人澡| 日韩久久精品一区| 久久99国产精品成人| 欧美精品一区二区三区蜜桃视频 | 高清视频一区二区| 久久久久一区二区三区四区| 久久av资源站| 久久久亚洲精品一区二区三区| 激情另类小说区图片区视频区| 日韩午夜电影av| 精品写真视频在线观看| 精品久久久久久久久久久久久久久久久 | 91片黄在线观看| 一区二区三区国产豹纹内裤在线| 欧美在线免费视屏| 日本不卡视频在线| 亚洲精品一线二线三线无人区| 国产精品 日产精品 欧美精品| 久久精品一区二区三区不卡| 岛国一区二区在线观看| 亚洲欧洲一区二区在线播放| 色婷婷av一区二区三区软件 | ...av二区三区久久精品| 色噜噜夜夜夜综合网| 亚洲福利视频三区| 日韩欧美一级特黄在线播放| 韩国视频一区二区| 亚洲色图视频网站| 制服丝袜亚洲网站| 国产成人午夜精品影院观看视频| 亚洲精选视频免费看| 这里只有精品99re| 国产成人精品午夜视频免费| 一区二区三区小说|