In jquery, you can use the remove() method to remove the a tag. This method is used to delete the specified element, including all text and child nodes of the element. The syntax is "a tag element object.remove()" .
The operating environment of this tutorial: windows10 system, jquery3.2.1 version, Dell G3 computer.
If you want to remove the a tag in jquery, you can use the remove() method
remove() method to remove the selected elements, including all the text and child nodes.
This method will also remove the data and events of the selected element.
The syntax is:
$(selector).remove()
The example is as follows:
<html> <head> <meta charset="utf-8"> <title>123</title> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("a").remove(); }); }); </script> </head> <body> <a href="">a标签1</a> <a href="">a标签2</a> <button>移除所有a标签</button> </body> </html>
Output result:
Related video tutorial recommendations:jQuery video tutorial
The above is the detailed content of How to remove a tag in jquery. For more information, please follow other related articles on the PHP Chinese website!