jquery Learning notes: Removing nodes from operations

Source: Internet
Author: User

Suppose the following HTML code

<DivID= "Mydiv"style= "width:100px;height:100px;border:1px solid red">XXX<Div>S1</Div>        <Div>S2</Div></Div>

The following methods can be used to delete a node operation:

$ ("#mydiv"). Remove (); The Remove method removes the Mydiv node itself, as well as all the content beneath it, and the child nodes

$ ("#mydiv"). empty (); Empty does not delete the Mydiv node itself, only the content under the node (including child nodes)

$ ("#mydiv"). Children (). remove (); Delete all the child nodes under Mydiv. The main text below will not be deleted, such as the XXX information above will not be deleted

$ ("#mydiv div"). Remove (); Effect with $ ("#mydiv"). Children (). remove ();

In summary, in most scenarios, to delete all child nodes, use the empty method; To delete itself and child nodes, use the Remove method.

jquery Learning notes: Removing nodes from operations

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.