例如,有许多不同背景图像的链接。
.item-1{background: url('images/bg-1.png') no-repeat;}
.item-2{background: url('images/bg-2.png') no-repeat;}
and so on....
现在我想创建另一个链接,但背景是白色的,所以我在每个png中添加0,如bg-01.png,bg-02.png等等,并希望用于.next .item-1{background: url('images/bg-1.png') no-repeat;}
但是喜欢我已经重新编码了所有.next链接的背景,所以我想知道我可以改为.next item-...
只是在后台添加0作为.item -...的背景已经定义了现在这次我要将网址从url('images/bg-1.png')
更改为url('images/bg-01.png')
,但我无法接受后台定义的字符串。
问题:如何从背景网址中获取字符串?
我可以用这样的css来改变它:
.next .item-506 > a{
background: url('../images/icons/icon-hover-01.png') no-repeat;
}
.next .item-507 > a{
background: url('../images/icons/icon-hover-02.png') no-repeat;
}
等等,但有了这个我要改变数百个链接所以我想知道用jquery完成。