问题描述
- jq选择器问题。。。。。。在线等。。。。
-
.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")
时间: 2024-09-13 21:09:19