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.
使用 jQuery,我需要选择所有没有定义背景颜色或图像的元素,并至少为其应用白色背景。
如果您知道要查找哪些特定元素,则可以执行以下操作:
var els = $('div'); els.each(function(idx, el){ if ($(el).css('background-color') == '' || $(el).css('background-image') == '') { $(el).addClass('white-background'); } });