addClass() - Add the specified style class name for each matching element
After() - Insert the specified content of the parameter after each element in the matching element collection as its sibling node
append() - Insert parameter content at the end of each matching element
attr() - Get the value of the attribute of the first element in the matching element set
bind() - bind an event handler for an element
children() - Get child elements of each element in the element set, selector selective filtering
clone() - Create a deep copy of the matching set of elements
contents() - Get the child elements of each element in the set of elements, including literals and comment nodes
css() - Get the value of the style attribute matching the first element in the element collection
data() - Store any related data on the matching element
detach() - Remove all matching elements from the DOM
empty() - Remove all children of the matching elements in the collection from the DOM
eq() - Reduce which element of the set of matching elements to the specified index
find() - Get the descendants of each element in the current matching element collection through a selector, jQuery object, or element filtering
hasClass() - Determines whether any matching element has a given (style) class assigned to any given element
html() - Get the HTML content of the first matching element in the collection
next() - Gets the element set of the following peer elements that are next to each element in the matching element set. If a selector is provided, the following sibling element will only be returned if the immediately following satisfies the selector
on() - Bind one or more event handlers on the selected element
off() - Remove an event handler
one() - Adds a handler for the event of an element. The handler function executes at most once per event type on each element.
parent() - Get the parent element of each element in the matching element set, which can provide an optional selector
prepend() - Insert the parameter content into front of each matching element (inside the element)
prop() - Get the property value of the first element in the matching element set
ready() - When the DOM is ready, specify a function to execute
remove() - Removes the matching element collection from the DOM. (Remove events and jQuery data on elements at the same time.)
removeAttr() - Removes an attribute for each element in the matching element collection (attribute)
removeClass() - Removes one, multiple or all styles of each matching element in the collection
removeData() - Remove bound data on the element
replaceWith() - replaces all matching elements in the collection with the provided content and returns the collection of deleted elements
text() - Get the merged text of each element in the set of elements, including their descendants
toggleClass() - Add or remove one or more style classes on each element in the matching element collection, depending on whether the style class exists or value toggle attributes. That is: if it exists (not exists), delete (add) a class
triggerHandler() - executes all handlers attached to elements for an event
unbind() - Remove a previous attached event handler from an element
val() - Get the current value of the first element in the matching element set
wrap() - wrap an html element on the outer layer of each matching element