jquery 清除div

简单的jQuery代码段可清除div的内容。 没什么特别的,此函数显示了使用jQuery从DOM中删除内容非常容易。

$('#div').empty();

了解更多: http : //api.jquery.com/empty/

$('#div').remove();

了解更多: http : //api.jquery.com/remove/

翻译自: https://www.sitepoint.com/jquery-clear-div-contents/

jquery 清除div