⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jquery.sdoc

📁 本在线考试系统采用了面向对象的分析和设计
💻 SDOC
📖 第 1 页 / 共 3 页
字号:

/**
 * Get a set of elements containing the unique next siblings of each of the matched set of elements.
 * @id jQuery.next
 * @alias $.next
 * @alias jQuery.prototype.next
 * @param {String} expr
 * @return {jQuery}
 */
function jQuery.next(){};

/**
 * Get a set of elements containing the unique previous siblings of each of the matched set of elements.
 * @id jQuery.prev
 * @alias $.prev
 * @alias jQuery.prototype.prev
 * @param {String} expr
 * @return {jQuery}
 */
function jQuery.prev(){};

/**
 * Get a set of elements containing all of the unique siblings of each of the matched set of elements.
 * @id jQuery.siblings
 * @alias $.siblings
 * @alias jQuery.prototype.siblings
 * @param {String} expr
 * @return {jQuery}
 */
function jQuery.siblings(){};

/**
 * Get a set of elements containing all of the unique children of each of the matched set of elements.
 * @id jQuery.children
 * @alias $.children
 * @alias jQuery.prototype.children
 * @param {String} expr
 * @return {jQuery}
 */
function jQuery.children(){};

/**
 * Append all of the matched elements to another, specified, set of elements.
 * @id jQuery.appendTo
 * @alias $.appendTo
 * @alias jQuery.prototype.appendTo
 * @param {} content
 * @return {jQuery}
 */
function jQuery.appendTo(){};

/**
 * Prepend all of the matched elements to another, specified, set of elements.
 * @id jQuery.prependTo
 * @alias $.prependTo
 * @alias jQuery.prototype.prependTo
 * @param {} content
 * @return {jQuery}
 */
function jQuery.prependTo(){};

/**
 * Insert all of the matched elements before another, specified, set of elements.
 * @id jQuery.insertBefore
 * @alias $.insertBefore
 * @alias jQuery.prototype.insertBefore
 * @param {} content
 * @return {jQuery}
 */
function jQuery.insertBefore(){};

/**
 * Insert all of the matched elements after another, specified, set of elements.
 * @id jQuery.insertAfter
 * @alias $.insertAfter
 * @alias jQuery.prototype.insertAfter
 * @param {} content
 * @return {jQuery}
 */
function jQuery.insertAfter(){};

/**
 * Remove an attribute from each of the matched elements.
 * @id jQuery.removeAttr
 * @alias $.removeAttr
 * @alias jQuery.prototype.removeAttr
 * @param {String} name
 * @return {jQuery}
 */
function jQuery.removeAttr(){};

/**
 * Adds the specified class(es) to each of the set of matched elements.
 * @id jQuery.addClass
 * @alias $.addClass
 * @alias jQuery.prototype.addClass
 * @param {String} class
 * @return {jQuery}
 */
function jQuery.addClass(){};

/**
 * Removes all or the specified class(es) from the set of matched elements.
 * @id jQuery.removeClass
 * @alias $.removeClass
 * @alias jQuery.prototype.removeClass
 * @param {String} class
 * @return {jQuery}
 */
function jQuery.removeClass(){};

/**
 * Adds the specified class if it is not present, removes it if it is present.
 * @id jQuery.toggleClass
 * @alias $.toggleClass
 * @alias jQuery.prototype.toggleClass
 * @param {String} class
 * @return {jQuery}
 */
function jQuery.toggleClass(){};

/**
 * Removes all matched elements from the DOM.
 * @id jQuery.remove
 * @alias $.remove
 * @alias jQuery.prototype.remove
 * @param {String} expr
 * @return {jQuery}
 */
function jQuery.remove(){};

/**
 * Removes all child nodes from the set of matched elements.
 * @id jQuery.empty
 * @alias $.empty
 * @alias jQuery.prototype.empty
 * @return {jQuery}
 */
function jQuery.empty(){};

/**
 * Reduce the set of matched elements to a single element.
 * @id jQuery.eq
 * @alias $.eq
 * @alias jQuery.prototype.eq
 * @param {Number} pos
 * @return {jQuery}
 */
function jQuery.eq(){};

/**
 * Reduce the set of matched elements to all elements before a given position.<BR>
 * <BR>This method is being deprecated in favor of the new <b>.slice()</b> method 
 * (which works identically to an array's slice method). <BR>
 * <BR>
 * You can duplicate <b>$("div").lt(2) </B>like so: <b>$("div").slice(0,2);</b>
 * @id jQuery.lt
 * @alias $.lt
 * @alias jQuery.prototype.lt
 * @param {Number} pos
 * @return {jQuery}
 */
function jQuery.lt(){};

/**
 * Reduce the set of matched elements to all elements after a given position.
 * <BR>This method is being deprecated in favor of the new <b>.slice()</b> method 
 * (which works identically to an array's slice method). <BR>
 * <BR>
 * You can duplicate <b>$("div").gt(2) </B>like so: <b>$("div").slice(2);</b>
 * @id jQuery.gt
 * @alias $.gt
 * @alias jQuery.prototype.gt
 * @param {Number} pos
 * @return {jQuery}
 */
function jQuery.gt(){};

/**
 * Filter the set of elements to those that contain the specified text.<BR>
 * <BR>
 * This method is being deprecated in favor of just using a regular .filter() 
 * statement. <BR>
 * <BR>
 * You can duplicate <B>.contains()</B> like so: <B>$("div").filter(":contains(Your Text)");</B>
 * @id jQuery.contains
 * @alias $.contains
 * @alias jQuery.prototype.contains
 * @param {String} str
 * @return {jQuery}
 */
function jQuery.contains(){};

/**
 * Get the current computed, pixel, width of the first matched element.
 * <br>
 * <br><b>Alternatives</b><br>
 * <br>
 * <b>width</b>(<b>val</b>: String|Number) : jQuery<br>
 * <br>
 * Set the CSS width of every matched element.<br>
 * <br>
 * @id jQuery.width
 * @alias jQuery.prototype.width
 * @alias $.width
 * @return {String}
 */
function jQuery.width(){};

/**
 * Get the current computed, pixel, height of the first matched element.
 * <br>
 * <br><b>Alternatives</b><br>
 * <br>
 * <b>height</b>(<b>val</b>: String|Number) : jQuery<br>
 * <br>
 * Set the CSS width of every matched element.<br>
 * <br>
 * @id jQuery.height
 * @alias $.height
 * @alias jQuery.prototype.height
 * @return {String}
 */
function jQuery.height(){};


/**
 * All ancestors of a given element.
 * @id jQuery.$.parents
 * @alias $.parents
 * @param {Element} elem
 * @return {Array}
 */
function jQuery.parents(){};

/**
 * A handy, and fast, way to traverse in a particular direction and find a specific element.
 * @id jQuery.$.nth
 * @alias $.nth
 * @param {DOMElement} cur
 * @param {String|Number} num
 * @param {String} dir
 * @return {DOMElement}
 */
function jQuery.nth(){};

/**
 * All elements on a specified axis.
 * @id jQuery.$.sibling
 * @alias $.sibling
 * @param {Element} elem
 * @return {Array}
 */
function jQuery.sibling(){};

/**
 * Binds a handler to a particular event (like click) for each matched element.
 * @id jQuery.bind
 * @alias $.bind
 * @alias jQuery.prototype.bind
 * @param {String} type
 * @param {Object} data
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.bind(){};

/**
 * Binds a handler to a particular event (like click) for each matched element.
 * @id jQuery.one
 * @alias $.one
 * @alias jQuery.prototype.one
 * @param {String} type
 * @param {Object} data
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.one(){};

/**
 * The opposite of bind, removes a bound event from each of the matched elements.
 * @id jQuery.unbind
 * @alias $.unbind
 * @alias jQuery.prototype.unbind
 * @param {String} type
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.unbind(){};

/**
 * Trigger a type of event on every matched element.
 * @id jQuery.trigger
 * @alias $.trigger
 * @alias jQuery.prototype.trigger
 * @param {String} type
 * @return {jQuery}
 */
function jQuery.trigger(){};

/**
 * Toggle between two function calls every other click.
 * <br>
 * <br><b>Alternatives</b><br>
 * <br>
 * <b>toggle</b>() : jQuery<br>
 * <br>
 * Toggles each of the set of matched elements.<br>
 * <br>
 * @id jQuery.toggle
 * @alias $.toggle
 * @alias jQuery.prototype.toggle
 * @param {Function} even
 * @param {Function} odd
 * @return {jQuery}
 */
function jQuery.toggle(){};

/**
 * A method for simulating hovering (moving the mouse on, and off, an object).
 * @id jQuery.hover
 * @alias $.hover
 * @alias jQuery.prototype.hover
 * @param {Function} over
 * @param {Function} out
 * @return {jQuery}
 */
function jQuery.hover(){};

/**
 * Bind a function to be executed whenever the DOM is ready to be traversed and manipulated.
 * @id jQuery.ready
 * @alias $.ready
 * @alias jQuery.prototype.ready
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.ready(){};

/**
 * Bind a function to the scroll event of each matched element.
 * @id jQuery.scroll
 * @alias $.scroll
 * @alias jQuery.prototype.scroll
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.scroll(){};

/**
 * Bind a function to the submit event of each matched element.
 * <br>
 * <br><b>Alternatives</b><br>
 * <br>
 * <b>submit</b>() : jQuery<br>
 * <br>
 * Trigger the submit event of each matched element.<br>
 * <br>
 * @id jQuery.submit
 * @alias $.submit
 * @alias jQuery.prototype.submit
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.submit(){};

/**
 * Bind a function to the focus event of each matched element.
 * <br>
 * <br><b>Alternatives</b><br>
 * <br>
 * <b>focus</b>() : jQuery<br>
 * <br>
 * Trigger the focus event of each matched element.<br>
 * <br>
 * @id jQuery.focus
 * @alias $.focus
 * @alias jQuery.prototype.focus
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.focus(){};

/**
 * Bind a function to the keydown event of each matched element.
 * @id jQuery.keydown
 * @alias $.keydown
 * @alias jQuery.prototype.keydown
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.keydown(){};

/**
 * Bind a function to the dblclick event of each matched element.
 * @id jQuery.dblclick
 * @alias $.dblclick
 * @alias jQuery.prototype.dblclick
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.dblclick(){};

/**
 * Bind a function to the keypress event of each matched element.
 * @id jQuery.keypress
 * @alias $.keypress
 * @alias jQuery.prototype.keypress
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.keypress(){};

/**
 * Bind a function to the error event of each matched element.
 * @id jQuery.error
 * @alias $.error
 * @alias jQuery.prototype.error
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.error(){};

/**
 * Bind a function to the blur event of each matched element.
 * <br>
 * <br><b>Alternatives</b><br>
 * <br>
 * <b>blur</b>() : jQuery<br>
 * <br>
 * Trigger the blur event of each matched element.<br>
 * <br>
 * @id jQuery.blur
 * @alias $.blur
 * @alias jQuery.prototype.blur
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.blur(){};

/**
 * Bind a function to the load event of each matched element.
 * <br>
 * <br><b>Alternatives</b><br>
 * <br>
 * <b>load</b>(<b>url</b>: String, <b>params</b>: Object, <b>callback</b>: Function) : jQuery<br>
 * <br>
 * Load HTML from a remote file and inject it into the DOM.<br>
 * <br>
 * @id jQuery.load
 * @alias $.load
 * @alias jQuery.prototype.load
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.load(){};

/**
 * Bind a function to the select event of each matched element.
 * <br>
 * <br><b>Alternatives</b><br>
 * <br>
 * <b>select</b>() : jQuery<br>
 * <br>
 * Trigger the select event of each matched element.<br>
 * <br>
 * @id jQuery.select
 * @alias $.select
 * @alias jQuery.prototype.select
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.select(){};

/**
 * Bind a function to the mouseup event of each matched element.
 * @id jQuery.mouseup
 * @alias $.mouseup
 * @alias jQuery.prototype.mouseup
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.mouseup(){};

/**
 * Bind a function to the unload event of each matched element.
 * @id jQuery.unload
 * @alias $.unload
 * @alias jQuery.prototype.unload
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.unload(){};

/**
 * Bind a function to the change event of each matched element.
 * @id jQuery.change
 * @alias $.change
 * @alias jQuery.prototype.change
 * @param {Function} fn
 * @return {jQuery}
 */
function jQuery.change(){};

/**
 * Bind a function to the mouseout event of each matched element.
 * @id jQuery.mouseout
 * @alias $.mouseout
 * @alias jQuery.prototype.mouseout
 * @param {Function} fn
 * @return {jQuery}
 */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -