我有簡單基本的HTML結構如何刪除頁面上的所有空白或空格div?
<div class="fl-no-pad" style="display: block;">
</div>
當你看到這個div爲空或有我space.how可以刪除所有theese DIV在這種情況下?
,這是我的jQuery代碼
$(".fl-no-pad").each(function() {
if ($(this).is(':empty')){
$(this).remove();
}
});
正如一個側面說明(也許對於即將成爲讀者),CSS4將使用處理呢[:空白僞類(HTTP:// css4- selectors.com/selector/css4/blank-pseudo-class/) –
[如何使用空格刪除元素?](http://stackoverflow.com/questions/7924268/how-to-remove-elements-with -whitespace) – gurvinder372