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/