How to destroy a DOM element with jQuery?

前端 未结 4 1965
攒了一身酷
攒了一身酷 2020-12-01 08:51

Suppose the jQuery object is $target.

4条回答
  •  广开言路
    2020-12-01 09:11

    If you want to completely destroy the target, you have a couple of options. First you can remove the object from the DOM as described above...

    console.log($target);   // jQuery object
    $target.remove();       // remove target from the DOM
    console.log($target);   // $target still exists
    

    Option 1 - Then replace target with an empty jQuery object (jQuery 1.4+)

    $target = $();
    console.log($target);   // empty jQuery object
    

    Option 2 - Or delete the property entirely (will cause an error if you reference it elsewhere)

    delete $target;
    console.log($target);   // error: $target is not defined
    

    More reading: info about empty jQuery object, and info about delete

提交回复
热议问题