How to set click delete event in jquery

WBOY
Release: 2022-05-12 10:34:00
Original
2302 people have browsed it

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()
Copy after login

Add a function to the click event:

$(selector).click(function)
Copy after login

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()
Copy after login

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>
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!