Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これが私が抱えている問題です。空または空白のあるdivを非表示または削除したい。Firefoxで以下のリンクを開いてfirebugを実行すると、それらの空のdivが引き続き表示されます。それらを削除または非表示にするにはどうすればよいですか?
http://jsfiddle.net/f5BMy/4/
これがあなたがそれをする方法です。
$(document).ready(function () { $('.row').each(function(index) { if($(this).text().trim() == '') { $(this).remove(); // or $(this).hide(); } }); });
http://jsfiddle.net/f5BMy/3/