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.
我有一些span标签,假设#spanid 具有属性background: url(some image) -22px top no-repeat,它显示一些图像作为背景。
span
#span
background: url(some image) -22px top no-repeat
如果它具有属性background: url(some image) -22px top no-repeat,则显示另一个图像。问题是,如果我指定('#span').attr('background-position','0px top')没有任何反应,则不会显示其他图像。有人可以解释为什么吗?
('#span').attr('background-position','0px top')
使用.css()
$('#span').css('background-position','0px top');
.css() -> 获取匹配元素集中第一个元素的样式属性值。