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'); } });