我正在尝试获取元素背景颜色
$(document).ready(function(){
$.each('.log-widget',function(){
console.log($(this).css('backgroundColor'));
//$(this).css({'box-shadow':'1px 1px 20px'+});
});
});
它不起作用它把我送回去:TypeError: invalid 'in' operand a
我想获取每个元素的背景颜色并将其返回为十六进制颜色。