.refresh_button {
background: url(../../../images/shuaxin.png) no-repeat;
width: 48px;
height: 20px;
border: none;
text-align: center;
line-height: 20px;
margin-left: 20px;
display: inline;
vertical-align: top;
}
jq获取 background的url属性怎么获取?
$(".refresh_button").css("background");然后截取!
$(".refresh_button").css("background").attr(""url); 可以试试这个行不行
$(".refresh_button").css("background-image")