我有一个<div>
有时会background
应用一个内联属性。
我希望能够检查是否附加了内联样式,如果有,那么我想继续附加一个background-position
.
有没有一种方法可以明确检查应用于的内联背景$(this)
?
if ($(this).css('background').length > 0) {
console.log('has a background');
// set a background position
$(this).css('background-position', 'center 22px');
}