jQuery之empty() VS. remove()

jQuery empty() vs remove()


What's the difference between empty() and remove()methods in jQuery, and when we call any of these methods, the objects being created will be destroyed and memory released?


----------------------------------------------------------------------------------

- empty() will remove all the contents of the selection.

- remove() will remove the selection and its contents.


Consider:
<div>
    <p><strong>foo</strong></p>
</div>

//

$('p').empty();  // --> "<div><p></p></div>"

// whereas,

$('p').remove(); // --> "<div></div>"







-

jquery-empty-vs-remove
http://stackoverflow.com/questions/3090662

















---








-

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326853565&siteId=291194637