Detailed explanation of jQuery's core functions and event handling

Detailed explanation of jQuery's core functions and event handling

event

Page Loading

1. ready(fn) binds a function to be executed when the DOM is loaded and ready to be queried and manipulated

 $(document).ready(function(){
  // Write your code here...
});
// The following is a shorthand $(function($) {
  // You can continue to use $ as an alias here...
});

2. on(events,fn) binds one or more event processing functions to the selected element

 // Add a click event listener to the p tag $("p").on("click", function(){
	alert( $(this).text() );
});
// The second way of writing is equivalent to the above $("p").click(function(){
	alert( $(this).text() );
});

3. off(events,[fn]) removes the event handling function of one or more events on the selected element

 // Remove all event listeners bound to the p tag $("p").off()
// Remove the click event listener bound to the p tag $("p").off("click")

4. bind(events,fn) binds the event processing function to a specific event of each matching element

 // Remove all event listeners bound to the p tag $("p").bind("click", function(){
  alert( $(this).text() );
});
// Bind multiple event types at the same time $('#foo').bind('mouseenter mouseleave', function() {
  alert();
});

5. unbind(type,fn]])bind() , removes the bound event from each matching element

 // Unbind all events of all paragraphs $("p").unbind()
// Unbind the paragraph's click event $("p").unbind("click")

6. one(type,[data],fn) binds a one-time event handler to each matching element's specific event (like click)

 // When all paragraphs are clicked for the first time, display all their texts $("p").one("click", function(){
  alert( $(this).text() );
});

Event Delegation

1. delegate(selector,[type],[data],fn) adds one or more event handlers to the specified element (a child of the selected element) and specifies the functions to run when these events occur.

 <div style="background-color:red">
      <p>This is a paragraph. </p>
      <button>Click here</button>
  </div>
// When the button is clicked, hide or show the p element $("div").delegate("button", "click", function () {
      $("p").slideToggle();
  });

insert image description here

2. undelegate([selector,[type],fn]) removes one or more event handlers added by the delegate() method

 // Remove all event handlers added by the delegate() method from the p element $("p").undelegate();
// Remove all click event handlers added by the delegate() method from the p element $("p").undelegate("click")

Event Switching

1. hover([over,]out) A method that simulates a hover event (mouse moves over an object and moves out of the object)

over : The function to be triggered when the mouse moves over the element

out : The function to be triggered when the mouse moves out of the element

 // The table with the mouse hovering is added with a specific class $("td").hover(
  function () {
    $(this).addClass("hover");
  },
  function () {
    $(this).removeClass("hover");
  }
);

event

1. blur([[data],fn]) triggers the blur event when the element loses focus

 // The table with the mouse hovering is added with a specific class $("td").hover(
  function () {
    $(this).addClass("hover");
  },
  function () {
    $(this).removeClass("hover");
  }
);

2. change([[data],fn]) When the value of an element changes, a change event occurs

 // Trigger the change event of the selected element $(selector).change();

3. click([[data],fn]) triggers the click event of each matching element

 // Trigger click events for all paragraphs in the page $("p").click();

4. dblclick([[data],fn]) When you double-click an element, a dblclick event occurs.

 // Bind the "Hello World!" alert box to the double-click event of each paragraph on the page $("p").dblclick( function () { alert("Hello World!"); });

5. error([[data],fn]) When an element encounters an error (not loaded correctly), an error event occurs

 // Log JavaScript errors on the server:
$(window).error(function(msg, url, line){
  jQuery.post("js_error_log.php", { msg: msg, url: url, line: line });
});

6. focus([[data],fn]) triggers the focus event when the element gains focus

 // When the page loads, set the focus on the element with id 'login':
$(document).ready(function(){
  $("#login").focus();
});

7. focusin([data],fn) triggers the focusin event when the element gains focus

 <p><input type="text" /> <span>focusout fire</span></p>
<p><input type="password" /> <span>focusout fire</span></p>
// After getting the focus, the animation will be triggered$("p").focusin(function() {
	$(this).find("span").css('display','inline').fadeOut(1000);
});

8. focusout([data],fn) triggers the focusout event when the element loses focus

 // After getting the focus, the animation will be triggered $("p").focusout(function() {
  $(this).find("span").css('display','inline').fadeOut(1000);
});

9. keydown([[data],fn]) When the keyboard or button is pressed, the keydown event occurs

 // To respond to keyboard keystrokes on the page, you can use the following code $(window).keydown(function(event){
  switch(event.keyCode) {
    // ...
    // Different keys do different things // Different browsers have different keycodes // More details: http://unixpapa.com/js/key.html
    // ...
  }
});

10. keypress([[data],fn]) When the keyboard or button is pressed, a keypress event occurs

 // Count the number of keystrokes in the input field $("input").keydown(function(){
  $("span").text(i+=1);
});

11. keyup([[data],fn]) When the button is released, the keyup event occurs. It occurs on the currently focused element.

 // When a key is pressed, change the color of the text field $("input").keyup(function(){
  $("input").css("background-color","#D6D6FF");
});

12. mousedown([[data],fn]) When the mouse pointer moves over an element and the mouse button is pressed, a mousedown event occurs

 // When the mouse button is pressed, hide or show the element $("button").mousedown(function(){
  $("p").slideToggle();
});

13. mouseenter([[data],fn]) When the mouse pointer passes through an element, a mouseenter event occurs

 // When the mouse pointer enters (passes through) an element, change the background color of the element$("p").mouseenter(function(){
  $("p").css("background-color","yellow");
});

14. mouseleave([[data],fn]) When the mouse pointer leaves the element, a mouseleave event occurs

 // When the mouse pointer leaves the element, change the background color of the element $("p").mouseleave(function(){ $("p").css("background-color","#E9E9E4");}); // When the mouse pointer leaves the element, change the background color of the element $("p").mouseleave(function(){
  $("p").css("background-color","#E9E9E4");
});

15. mousemove([[data],fn]) When the mouse pointer moves in the specified element, a mousemove event occurs

Event Coordinates

  • event.clientX, event.clientY relative to the upper left corner of the viewport
  • event.pageX,event.pageY relative to the upper left corner of the page
  • event.offsetX,event.offsetY are relative to the upper left corner of the event element
 // Get the position of the mouse pointer in the page $(document).mousemove(function(e){
  $("span").text(e.pageX + ", " + e.pageY);
});

16. mouseout([[data],fn]) The mouseout event occurs when the mouse pointer moves away from the element

 // When the mouse moves away from the element, change the background color of the element:
$("p").mouseout(function(){
  $("p").css("background-color","#E9E9E4");
});

17. mouseover([[data],fn]) When the mouse pointer is over an element, a mouseover event occurs

 // When the mouse pointer is over an element, change the background color of the element$("p").mouseover(function(){
  $("p").css("background-color","yellow");
});

18. mouseup([[data],fn]) The mouseup event occurs when you release the mouse button on an element.

 // When the mouse button is released, hide or show the element $("button").mouseup(function(){
  $("p").slideToggle();
});

19. resize([[data],fn]) The resize event occurs when the browser window is resized.

 // Pop up a warning window when changing the size of the page window$(window).resize(function(){
  alert("Stop it!");
});

20. scroll([[data],fn]) When the user scrolls the specified element, a scroll event occurs

 // Function executed when the page scroll bar changes:
$(window).scroll( function() { 
 	 alert("Stop it!");
});

21. select([[data],fn]) When the text in the textarea or text type input element is selected, the select event occurs

 // Trigger the select event of all input elements:
$("input").select();

22. submit([[data],fn]) When the form is submitted, a submit event occurs

 // Submit the first form on this page:
$("form:first").submit();
// Prevent form submission:
$("form").submit( function () {
  return false;
} );

23.unload([[data],fn]) When the user leaves the page, an unload event occurs

Click a link that leaves the page

Typed the new URL in the address bar

Use the forward or back buttons

Close the browser

Reload the page

 // Pop up a warning box when the page is unloaded:
$(window).unload( function () { alert("Bye now!"); } );

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • How to deal with invalid events when using bind to dynamically bind events in jQuery
  • Features of jQuery event handling (event naming mechanism)
  • In-depth understanding of jQuery event handling
  • A brief discussion on jquery event processing
  • How much do you know about jQuery event handling?

<<:  How does the composite index of MySQL take effect?

>>:  Implementation methods of common CSS3 animations

Recommend

Detailed discussion on the issue of mysqldump data export

1. An error (1064) is reported when using mysqldu...

Solution to invalid margin-top of elements in div tags

Just as the title says. The question is very stran...

Detailed explanation of JavaScript function this pointing problem

Table of contents 1. The direction of this in the...

Summary of some common uses of refs in React

Table of contents What are Refs 1. String type Re...

linux No space left on device 500 error caused by inode fullness

What is an inode? To understand inode, we must st...

Graphical explanation of the underlying principle of JavaScript scope chain

Table of contents Preface Scope 1. What is scope?...

Historical Linux image processing and repair solutions

The ECS cloud server created by the historical Li...

Sqoop export map100% reduce0% stuck in various reasons and solutions

I call this kind of bug a typical "Hamlet&qu...

Steps for Vue3 to use mitt for component communication

Table of contents 1. Installation 2. Import into ...

Mysql join table and id auto-increment example analysis

How to write join If you use left join, is the ta...

...

Essential bonus items for optimizing and packaging the front end of Vue projects

Table of contents Preface 1. Routing lazy loading...