Home > Article > Web Front-end > How to set click delete event in jquery
Setting method: 1. Use the "click element object.click(function(){event processing function})" method to bind the click event to the specified element and specify the event processing function; 2. In the event processing function Use the "Element object to be deleted.remove();" setting and click delete.
The operating environment of this tutorial: windows10 system, jquery3.2.1 version, Dell G3 computer.
1. Use the click() method to set the click event
When an element is clicked, the click event occurs.
The click() method triggers a click event, or specifies a function to run when a click event occurs.
Syntax
Trigger the click event of the selected element:
$(selector).click()
Add a function to the click event:
$(selector).click(function)
function Optional. Specifies a function to run when the click event occurs.
2. Use the remove() method to delete elements
The remove() method removes the selected elements, including all text and child nodes.
This method will also remove the data and events of the selected element.
Grammar
$(selector).remove()
The example is as follows:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>123</title> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("p").click(function(){ $("p") .remove(); }); }); </script> </head> <body> <p>点击这个段落。</p> </body> </html>
Output result:
Related video tutorial recommendations: jQuery video tutorial
The above is the detailed content of How to set click delete event in jquery. For more information, please follow other related articles on the PHP Chinese website!