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

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

?? element.js

?? ext-2.3.0
?? JS
?? 第 1 頁 / 共 5 頁
字號:
/*
 * Ext JS Library 2.3.0
 * Copyright(c) 2006-2009, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

/** * @class Ext.Element * <p>Encapsulates a DOM element, adding simple DOM manipulation facilities, normalizing for browser differences.</p> * <p>All instances of this class inherit the methods of {@link Ext.Fx} making visual effects easily available to all DOM elements.</p> * <p>Note that the events documented in this class are not Ext events, they encapsulate browser events. To * access the underlying browser event, see {@link Ext.EventObject#browserEvent}. Some older * browsers may not support the full range of events. Which events are supported is beyond the control of ExtJs.</p> * <p>Usage:</p><pre><code>// by idvar el = Ext.get("my-div");// by DOM element referencevar el = Ext.get(myDivElement);</code></pre> * <b>Animations</b><br /> * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter * should either be a boolean (true) or an object literal with animation options. Note that the supported Element animation * options are a subset of the {@link Ext.Fx} animation options specific to Fx effects.  The Element animation options are:<pre>Option    Default   Description--------- --------  ---------------------------------------------duration  .35       The duration of the animation in secondseasing    easeOut   The easing methodcallback  none      A function to execute when the anim completesscope     this      The scope (this) of the callback function</pre> * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or * manipulate the animation. Here's an example:<pre><code>var el = Ext.get("my-div");// no animationel.setWidth(100);// default animationel.setWidth(100, true);// animation with some options setel.setWidth(100, {    duration: 1,    callback: this.foo,    scope: this});// using the "anim" property to get the Anim objectvar opt = {    duration: 1,    callback: this.foo,    scope: this};el.setWidth(100, opt);...if(opt.anim.isAnimated()){    opt.anim.stop();}</code></pre> * <b> Composite (Collections of) Elements</b><br /> * For working with collections of Elements, see {@link Ext.CompositeElement} * @constructor Create a new Element directly. * @param {String/HTMLElement} element * @param {Boolean} forceNew (optional) By default the constructor checks to see if there is already an instance of this element in the cache and if there is it returns the same instance. This will skip that check (useful for extending this class). */(function(){var D = Ext.lib.Dom;var E = Ext.lib.Event;var A = Ext.lib.Anim;// local style camelizing for speedvar propCache = {};var camelRe = /(-[a-z])/gi;var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };var view = document.defaultView;Ext.Element = function(element, forceNew){    var dom = typeof element == "string" ?            document.getElementById(element) : element;    if(!dom){ // invalid id/element        return null;    }    var id = dom.id;    if(forceNew !== true && id && Ext.Element.cache[id]){ // element object already exists        return Ext.Element.cache[id];    }    /**     * The DOM element     * @type HTMLElement     */    this.dom = dom;    /**     * The DOM element ID     * @type String     */    this.id = id || Ext.id(dom);};var El = Ext.Element;El.prototype = {//  Mouse events    /**     * @event click     * Fires when a mouse click is detected with the element.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event dblclick     * Fires when a mouse double click is detected with the element.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event mousedown     * Fires when a mousedown is detected with the element.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event mouseup     * Fires when a mouseup is detected with the element.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event mouseover     * Fires when a mouseover is detected with the element.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event mousemove     * Fires when a mousemove is detected with the element.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event mouseout     * Fires when a mouseout is detected with the element.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     *///  Keyboard events    /**     * @event keypress     * Fires when a keypress is detected with the element.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event keydown     * Fires when a keydown is detected with the element.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event keyup     * Fires when a keyup is detected with the element.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     *///  HTML frame/object events    /**     * @event load     * Fires when the user agent finishes loading all content within the element. Only supported by window, frames, objects and images.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event unload     * Fires when the user agent removes all content from a window or frame. For elements, it fires when the target element or any of its content has been removed.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event abort     * Fires when an object/image is stopped from loading before completely loaded.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event error     * Fires when an object/image/frame cannot be loaded properly.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event resize     * Fires when a document view is resized.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event scroll     * Fires when a document view is scrolled.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     *///  Form events    /**     * @event select     * Fires when a user selects some text in a text field, including input and textarea.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event change     * Fires when a control loses the input focus and its value has been modified since gaining focus.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event submit     * Fires when a form is submitted.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event reset     * Fires when a form is reset.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event focus     * Fires when an element receives focus either via the pointing device or by tab navigation.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event blur     * Fires when an element loses focus either via the pointing device or by tabbing navigation.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     *///  User Interface events    /**     * @event DOMFocusIn     * Where supported. Similar to HTML focus event, but can be applied to any focusable element.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.     */    /**     * @event DOMFocusOut     * Where supported. Similar to HTML blur event, but can be applied to any focusable element.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event DOMActivate     * Where supported. Fires when an element is activated, for instance, through a mouse click or a keypress.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     *///  DOM Mutation events    /**     * @event DOMSubtreeModified     * Where supported. Fires when the subtree is modified.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event DOMNodeInserted     * Where supported. Fires when a node has been added as a child of another node.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event DOMNodeRemoved     * Where supported. Fires when a descendant node of the element is removed.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event DOMNodeRemovedFromDocument     * Where supported. Fires when a node is being removed from a document.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event DOMNodeInsertedIntoDocument     * Where supported. Fires when a node is being inserted into a document.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event DOMAttrModified     * Where supported. Fires when an attribute has been modified.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * @event DOMCharacterDataModified     * Where supported. Fires when the character data has been modified.     * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event     */    /**     * The element's default display mode  (defaults to "")     * @type String     */    originalDisplay : "",    visibilityMode : 1,    /**     * The default unit to append to CSS values where a unit isn't provided (defaults to px).     * @type String     */    defaultUnit : "px",    /**     * Sets the element's visibility mode. When setVisible() is called it     * will use this to determine whether to set the visibility or the display property.     * @param visMode Ext.Element.VISIBILITY or Ext.Element.DISPLAY     * @return {Ext.Element} this     */    setVisibilityMode : function(visMode){        this.visibilityMode = visMode;        return this;    },    /**     * Convenience method for setVisibilityMode(Element.DISPLAY)     * @param {String} display (optional) What to set display to when visible     * @return {Ext.Element} this     */    enableDisplayMode : function(display){        this.setVisibilityMode(El.DISPLAY);        if(typeof display != "undefined") this.originalDisplay = display;        return this;    },    /**     * Looks at this node and then at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)     * @param {String} selector The simple selector to test     * @param {Number/Mixed} maxDepth (optional) The max depth to search as a number or element (defaults to 50 || document.body)     * @param {Boolean} returnEl (optional) True to return a Ext.Element object instead of DOM node     * @return {HTMLElement} The matching DOM node (or null if no match was found)     */    findParent : function(simpleSelector, maxDepth, returnEl){        var p = this.dom, b = document.body, depth = 0, dq = Ext.DomQuery, stopEl;        maxDepth = maxDepth || 50;        if(typeof maxDepth != "number"){            stopEl = Ext.getDom(maxDepth);            maxDepth = Number.MAX_VALUE;        }        while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){            if(dq.is(p, simpleSelector)){                return returnEl ? Ext.get(p) : p;            }            depth++;            p = p.parentNode;        }        return null;    },

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕乱码一区二区免费| 日本成人在线一区| 韩国av一区二区三区四区| 欧美日韩一区二区三区高清 | 日韩成人伦理电影在线观看| 国产成人久久精品77777最新版本| 在线免费观看日韩欧美| 久久久99久久| 久久福利资源站| 日韩美女主播在线视频一区二区三区| 亚洲精品视频观看| 欧美性猛交xxxx黑人交| 亚洲一区二区欧美激情| 欧美视频精品在线观看| 午夜一区二区三区在线观看| 欧美亚洲另类激情小说| 国产精品电影一区二区三区| 国产成a人亚洲精品| 国产精品久久久一区麻豆最新章节| 国产一区二区电影| 久久久久久夜精品精品免费| caoporn国产一区二区| 一区二区三区丝袜| 精品国产乱码久久久久久1区2区| 国产一区二区看久久| 欧美—级在线免费片| 欧日韩精品视频| 免费黄网站欧美| 欧美精彩视频一区二区三区| 91国在线观看| 国产一区二区三区日韩| 国产日产欧美一区二区三区| 欧美日韩中文另类| 国产麻豆精品一区二区| 伊人婷婷欧美激情| 久久蜜臀精品av| 欧美午夜片在线看| zzijzzij亚洲日本少妇熟睡| 另类小说图片综合网| 樱桃国产成人精品视频| 欧美大肚乱孕交hd孕妇| 色琪琪一区二区三区亚洲区| 九九**精品视频免费播放| 中文字幕一区二区三区四区| 色久综合一二码| 免费一级欧美片在线观看| 亚洲欧洲一区二区在线播放| 色哟哟一区二区在线观看| 韩国成人精品a∨在线观看| 亚洲午夜成aⅴ人片| 一区二区三区视频在线看| 亚洲国产精品av| 51精品秘密在线观看| 欧美三级韩国三级日本三斤| av网站免费线看精品| 成人av电影观看| 国产成人av电影在线| 琪琪一区二区三区| 日韩电影免费一区| 日韩高清在线不卡| 国产主播一区二区| 国产精品一区二区三区乱码| 高清av一区二区| 不卡欧美aaaaa| eeuss鲁片一区二区三区在线观看| 午夜国产不卡在线观看视频| 亚洲综合在线观看视频| 亚洲成a人在线观看| 青椒成人免费视频| 懂色av一区二区夜夜嗨| 99精品欧美一区| 豆国产96在线|亚洲| 在线视频一区二区三区| 欧美日韩国产小视频| 久久影院视频免费| 亚洲理论在线观看| 日韩成人免费看| 成人午夜碰碰视频| 91精品国产综合久久国产大片| 欧美电影免费观看高清完整版在 | aaa欧美色吧激情视频| 色综合久久九月婷婷色综合| 欧美不卡一区二区三区| 日韩伦理电影网| 精品一区二区三区香蕉蜜桃| 91激情五月电影| 一区精品在线播放| 精品一区二区三区香蕉蜜桃 | 国产综合久久久久久久久久久久| 日本精品视频一区二区| 国产日本欧美一区二区| 蜜臀av性久久久久蜜臀aⅴ流畅 | 亚洲综合一区二区三区| 一本一道综合狠狠老| 亚洲色图另类专区| 性做久久久久久| 欧美老肥妇做.爰bbww| 免费高清在线视频一区·| 久久久久久久久久久99999| 成人妖精视频yjsp地址| 亚洲综合图片区| 精品裸体舞一区二区三区| 99免费精品视频| 免费人成精品欧美精品| 亚洲色图视频网站| 精品国产乱码久久久久久久| 99麻豆久久久国产精品免费优播| 中文字幕不卡的av| 国产露脸91国语对白| 国产喂奶挤奶一区二区三区| 国产老女人精品毛片久久| 欧美韩国一区二区| 99riav一区二区三区| 亚洲午夜久久久久久久久久久| 欧美三级视频在线观看| 极品美女销魂一区二区三区免费| 欧美mv和日韩mv国产网站| 成人理论电影网| 亚洲色图19p| 日韩免费电影一区| 91美女视频网站| 亚洲精选在线视频| 久久综合色一综合色88| 91国在线观看| 成人福利视频在线| 日韩精品亚洲专区| 中文字幕在线一区免费| 91精品麻豆日日躁夜夜躁| 日本网站在线观看一区二区三区 | 欧美视频在线观看一区二区| 日韩二区三区在线观看| 亚洲美女淫视频| 国产三级欧美三级日产三级99| 欧美三级日韩在线| 99久久国产免费看| 国产精品亚洲视频| 日韩国产一二三区| 日韩**一区毛片| 亚洲在线成人精品| 欧美高清视频在线高清观看mv色露露十八 | 成人h动漫精品一区二区| 国产日韩一级二级三级| 在线观看国产日韩| 蜜桃久久久久久| 中文乱码免费一区二区| 日韩一二三区视频| 欧美日韩日日骚| 欧美日韩成人综合天天影院 | 欧美精品第1页| 欧美视频第二页| 欧美日韩高清一区二区不卡| 精品在线你懂的| 国产综合色产在线精品 | 一区二区欧美国产| 亚洲一区二区免费视频| 亚洲成人福利片| 日本免费新一区视频| 麻豆中文一区二区| 蜜桃av噜噜一区二区三区小说| 日韩国产欧美视频| 久久国产精品99久久久久久老狼| 五月天一区二区三区| 韩国三级电影一区二区| 国产a精品视频| 色妞www精品视频| 欧美一级专区免费大片| 国产欧美一区二区三区网站| 亚洲国产精品成人综合色在线婷婷| 中文字幕一区二区三区四区不卡 | 精品一区二区三区在线观看国产| 国内一区二区视频| 91福利资源站| 久久嫩草精品久久久精品一| 亚洲欧洲国产日韩| 蜜桃免费网站一区二区三区| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 91亚洲精品一区二区乱码| 欧美人体做爰大胆视频| 国产欧美精品一区aⅴ影院 | 亚洲成av人片一区二区| 高清不卡在线观看av| 欧美精品v日韩精品v韩国精品v| 久久久久国产精品麻豆ai换脸 | 国产精品美女久久久久久久| 日韩二区在线观看| 欧美无人高清视频在线观看| 欧美国产日韩a欧美在线观看| 午夜精品福利久久久| 日本韩国视频一区二区| 国产精品美女久久福利网站| 国产在线不卡一区| 精品入口麻豆88视频| 男人的j进女人的j一区| 欧美午夜理伦三级在线观看| 成人免费在线视频观看| 国产凹凸在线观看一区二区| 26uuu亚洲综合色欧美 | 免费观看在线色综合| 91精品国产全国免费观看| 性做久久久久久免费观看|