📄 jquery.sdoc
字号:
function jQuery.mouseout(){};
/**
* Bind a function to the keyup event of each matched element.
* @id jQuery.keyup
* @alias $.keyup
* @alias jQuery.prototype.keyup
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.keyup(){};
/**
* Bind a function to the click event of each matched element.
* <br>
* <br><b>Alternatives</b><br>
* <br>
* <b>click</b>() : jQuery<br>
* <br>
* Trigger the click event of each matched element.<br>
* <br>
* @id jQuery.click
* @alias $.click
* @alias jQuery.prototype.click
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.click(){};
/**
* Bind a function to the resize event of each matched element.
* @id jQuery.resize
* @alias $.resize
* @alias jQuery.prototype.resize
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.resize(){};
/**
* Bind a function to the mousemove event of each matched element.
* @id jQuery.mousemove
* @alias $.mousemove
* @alias jQuery.prototype.mousemove
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.mousemove(){};
/**
* Bind a function to the mousedown event of each matched element.
* @id jQuery.mousedown
* @alias $.mousedown
* @alias jQuery.prototype.mousedown
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.mousedown(){};
/**
* Bind a function to the mouseover event of each matched element.
* @id jQuery.mouseover
* @alias $.mouseover
* @alias jQuery.prototype.mouseover
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.mouseover(){};
/**
* Displays each of the set of matched elements if they are hidden.
* <br>
* <br><b>Alternatives</b><br>
* <br>
* <b>show</b>(<b>speed</b>: String|Number, <b>callback</b>: Function) : jQuery<br>
* <br>
* Show all matched elements using a graceful animation and firing an optional callback after completion.<br>
* <br>
* @id jQuery.show
* @alias $.show
* @alias jQuery.prototype.show
* @return {jQuery}
*/
function jQuery.show(){};
/**
* Hides each of the set of matched elements if they are shown.
* <br>
* <br><b>Alternatives</b><br>
* <br>
* <b>hide</b>(<b>speed</b>: String|Number, <b>callback</b>: Function) : jQuery<br>
* <br>
* Hide all matched elements using a graceful animation and firing an optional callback after completion.<br>
* <br>
* @id jQuery.hide
* @alias jQuery.prototype.hide
* @alias $.hide
* @return {jQuery}
*/
function jQuery.hide(){};
/**
* Reveal all matched elements by adjusting their height and firing an optional callback after completion.
* @id jQuery.slideDown
* @alias $.slideDown
* @alias jQuery.prototype.slideDown
* @param {String|Number} speed
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.slideDown(){};
/**
* Hide all matched elements by adjusting their height and firing an optional callback after completion.
* @id jQuery.slideUp
* @alias $.slideUp
* @alias jQuery.prototype.slideUp
* @param {String|Number} speed
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.slideUp(){};
/**
* Toggle the visibility of all matched elements by adjusting their height and firing an optional callback after completion.
* @id jQuery.slideToggle
* @alias $.slideToggle
* @alias jQuery.prototype.slideToggle
* @param {String|Number} speed
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.slideToggle(){};
/**
* Fade in all matched elements by adjusting their opacity and firing an optional callback after completion.
* @id jQuery.fadeIn
* @alias $.fadeIn
* @alias jQuery.prototype.fadeIn
* @param {String|Number} speed
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.fadeIn(){};
/**
* Fade out all matched elements by adjusting their opacity and firing an optional callback after completion.
* @id jQuery.fadeOut
* @alias $.fadeOut
* @alias jQuery.prototype.fadeOut
* @param {String|Number} speed
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.fadeOut(){};
/**
* Fade the opacity of all matched elements to a specified opacity and firing an optional callback after completion.
* @id jQuery.fadeTo
* @alias $.fadeTo
* @alias jQuery.prototype.fadeTo
* @param {String|Number} speed
* @param {Number} opacity
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.fadeTo(){};
/**
* A function for making your own, custom, animations.
* @id jQuery.animate
* @alias $.animate
* @alias jQuery.prototype.animate
* @param {Hash} params
* @param {String|Number} speed
* @param {String} easing
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.animate(){};
/**
* Load HTML from a remote file and inject it into the DOM, only
* if it's been modified by the server.<BR>
* <BR>
* This convenience method is being removed in favor of the long form use of $.ajax()<BR>
* <BR>
* <PRE>
* $.ajax({ url: "some.php", ifModified: true, ...});
* </PRE>
* @id jQuery.loadIfModified
* @alias $.loadIfModified
* @alias jQuery.prototype.loadIfModified
* @param {String} url
* @param {Map} params
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.loadIfModified(){};
/**
* Serializes a set of input elements into a string of data.
* @id jQuery.serialize
* @alias $.serialize
* @alias jQuery.prototype.serialize
* @return {String}
*/
function jQuery.serialize(){};
/**
* Evaluate all script tags inside this jQuery.
* @id jQuery.evalScripts
* @alias $.evalScripts
* @alias jQuery.prototype.evalScripts
* @return {jQuery}
*/
function jQuery.evalScripts(){};
/**
* Attach a function to be executed whenever an AJAX request begins and there is none already active.
* @id jQuery.ajaxStart
* @alias $.ajaxStart
* @alias jQuery.prototype.ajaxStart
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.ajaxStart(){};
/**
* Attach a function to be executed whenever all AJAX requests have ended.
* @id jQuery.ajaxStop
* @alias $.ajaxStop
* @alias jQuery.prototype.ajaxStop
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.ajaxStop(){};
/**
* Attach a function to be executed whenever an AJAX request completes.
* @id jQuery.ajaxComplete
* @alias $.ajaxComplete
* @alias jQuery.prototype.ajaxComplete
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.ajaxComplete(){};
/**
* Attach a function to be executed whenever an AJAX request completes successfully.
* @id jQuery.ajaxSuccess
* @alias $.ajaxSuccess
* @alias jQuery.prototype.ajaxSuccess
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.ajaxSuccess(){};
/**
* Attach a function to be executed whenever an AJAX request fails.
* @id jQuery.ajaxError
* @alias $.ajaxError
* @alias jQuery.prototype.ajaxError
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.ajaxError(){};
/**
* Attach a function to be executed before an AJAX request is sent.
* @id jQuery.ajaxSend
* @alias $.ajaxSend
* @alias jQuery.prototype.ajaxSend
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.ajaxSend(){};
/**
* Load a remote page using an HTTP GET request, only if
* it has been modified since it was last retrieved.<BR>
* <BR>
* This convenience method is being removed in favor of the long form use of $.ajax()<BR>
* <BR>
* <PRE>
* $.ajax({ url: "some.php", ifModified: true, ...});
* </PRE>
* @id jQuery.$.getIfModified
* @alias $.getIfModified
* @param {String} url
* @param {Map} params
* @param {Function} callback
* @return {XMLHttpRequest}
*/
function jQuery.getIfModified(){};
/**
* Loads, and executes, a remote JavaScript file using an HTTP GET request.
* @id jQuery.$.getScript
* @alias $.getScript
* @param {String} url
* @param {Function} callback
* @return {XMLHttpRequest}
*/
function jQuery.getScript(){};
/**
* Load JSON data using an HTTP GET request.
* @id jQuery.$.getJSON
* @alias $.getJSON
* @param {String} url
* @param {Map} params
* @param {Function} callback
* @return {XMLHttpRequest}
*/
function jQuery.getJSON(){};
/**
* Load a remote page using an HTTP POST request.
* @id jQuery.$.post
* @alias $.post
* @param {String} url
* @param {Map} params
* @param {Function} callback
* @return {XMLHttpRequest}
*/
function jQuery.post(){};
/**
* Set the timeout of all AJAX requests to a specific amount of time.<BR>
* <BR>
* This convenience method is being removed in favor of the long form
* use of the more-explicit $.ajaxSetup():<BR>
* <BR>
* <PRE>$.ajaxSetup({timeout: 3000});</PRE>
* @id jQuery.$.ajaxTimeout
* @alias $.ajaxTimeout
* @param {Number} time
* @return {undefined}
*/
function jQuery.ajaxTimeout(){};
/**
* Setup global settings for AJAX requests.
* @id jQuery.$.ajaxSetup
* @alias $.ajaxSetup
* @param {Map} settings
* @return {undefined}
*/
function jQuery.ajaxSetup(){};
/**
* Load a remote page using an HTTP request.
* @id jQuery.$.ajax
* @alias $.ajax
* @param {Map} properties
* @return {XMLHttpRequest}
*/
function jQuery.ajax(){};
/**
* Add the previous selection to the current selection.
* <BR>Useful for traversing elements, and then adding something that was matched before the last traversion.
* @id jQuery.$.andSelf
* @alias $.andSelf
* @return {jQuery}
*/
function jQuery.andSelf(){};
/**
* Find all the child nodes inside the matched elements (including text nodes), or the content document, if the element is an iframe.
* @id jQuery.$.contents
* @alias $.contents
* @return {jQuery}
*/
function jQuery.contents(){};
/**
* Checks the current selection against a class and returns true, if at least one element of the selection has the given class.
* @id jQuery.$.hasClass
* @alias $.hasClass
* @return {boolean}
*/
function jQuery.hasClass(){};
/**
* Selects a subset of the matched elements.
* @id jQuery.$.slice
* @alias $.slice
* @return {jQuery}
*/
function jQuery.slice(){};
/**
* Find all sibling elements before the current element.
* @id jQuery.$.prevAll
* @alias $.prevAll
* @return {jQuery}
*/
function jQuery.prevAll(){};
/**
* Find all sibling elements after the current element.
* @id jQuery.$.nextAll
* @alias $.nextAll
* @return {jQuery}
*/
function jQuery.nextAll(){};
/**
* Wrap all the elements in the matched set into a single wrapper element.
* @id jQuery.$.wrapAll
* @alias $.wrapAll
* @return {jQuery}
*/
function jQuery.wrapAll(){};
/**
* Wrap the inner child contents of each matched element (including text nodes)
* @id jQuery.$.wrapInner
* @alias $.wrapInner
* @return {jQuery}
*/
function jQuery.wrapInner(){};
/**
* Replaces all matched elements with the specified HTML or DOM elements.
* @id jQuery.$.replaceWith
* @alias $.replaceWith
* @return {jQuery}
*/
function jQuery.replaceWith(){};
/**
* Replaces the elements matched by the specified selector with the matched elements.
* @id jQuery.$.replaceAll
* @alias $.replaceAll
* @return {jQuery}
*/
function jQuery.replaceAll(){};
/**
* This particular method triggers all bound event handlers on an element (for a specific event type) WITHOUT executing the browsers default actions.
* @id jQuery.$.triggerHandler
* @alias $.triggerHandler
* @return {jQuery}
*/
function jQuery.triggerHandler(){};
/**
* Stops all the currently running animations on all the specified elements.
* @id jQuery.$.stop
* @alias $.stop
* @return {jQuery}
*/
function jQuery.stop(){};
/**
* Returns a reference to the first element's queue (which is an array of functions).
* <br>
* <br><b>Alternatives</b><br>
* <br>
* <b>queue</b>(<b>callback</b>: Function) : jQuery<br>
* <b>queue</b>(<b>queue</b>) : jQuery<br>
* <br>
* * <br>
* @id jQuery.$.queue
* @alias $.queue
* @return {jQuery}
*/
function jQuery.queue(){};
/**
* Removes a queued function from the front of the queue and executes it.
* @id jQuery.$.dequeue
* @alias $.dequeue
* @return {jQuery}
*/
function jQuery.dequeue(){};
/**
* Serializes all forms and form elements (like the .serialize() method) but returns a JSON data structure for you to work with.
* @id jQuery.$.serializeArray
* @alias $.serializeArray
* @return {Object}
*/
function jQuery.serializeArray(){};
/**
* States if the current page, in the user's browser, is being rendered using the W3C CSS Box Model
* @id jQuery.$.boxModel
* @alias $.boxModel
* @return {Boolean}
*/
function jQuery.boxModel(){};
/**
* Remove all duplicate elements from an array of elements.
* @id jQuery.$.unique
* @alias $.unique
* @return {Array}
*/
function jQuery.unique(){};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -