JQuery Delete Element

Source: Internet
Author: User

With JQuery, it's easy to delete existing HTML elements.

Delete element/content

To delete elements and content, you can typically use the following two JQuery methods:

  • Remove ()-Deletes the selected element (and its child elements)
  • Empty ()-Removes child elements from the selected element
JQuery Remove () method

The JQuery Remove () method deletes the selected element and its child elements.

Instance $ ("#div1"). Remove ();
Try it?

tip: in the real-life jquery programming section of this site, you can practice how to use jquery to delete an HTML element!

JQuery Empty () method

The JQuery Empty () method deletes the child elements of the selected element.

Instance $ ("#div1"). empty ();
Try it?

Filter for deleted elements

The JQuery Remove () method can also accept a parameter that allows you to filter the deleted element.

This parameter can be the syntax of any jQuery selector.

The following example removes all <p> elements of the class= "italic":

Instance $ ("P"). Remove (". Italic");
Try it?

JQuery Delete Element

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.