Home  >  Article  >  Web Front-end  >  How to set click delete event in jquery

How to set click delete event in jquery

WBOY
WBOYOriginal
2022-05-12 10:34:002296browse

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.

How to set click delete event in jquery

The operating environment of this tutorial: windows10 system, jquery3.2.1 version, Dell G3 computer.

How to set the click delete event in jquery

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:

How to set click delete event in jquery

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn