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

















---








-

猜你喜欢

转载自lixh1986.iteye.com/blog/2363455
今日推荐