我在包含background属性的html文档中有很多td。我想改变td背景的路径。以下是td:
的一个例子<td background="/v/vspfiles/templates/AlligatorPerform/images/Grid_Single_Divider_Vert.gif">
<img width="3" height="3" src="http://alligatorperformanceblog.com/vspfiles/templates/AlligatorPerform/images/clear1x1.gif">
</td>
在上面的例子中我想改变
background="/v/vspfiles/templates/AlligatorPerform/images/Grid_Single_Divider_Vert.gif"
到
background="http://alligatorperformanceblog.com/vspfiles/templates/AlligatorPerform/images/Grid_Single_Divider_Vert.gif"
任何人都可以帮助我如何做到这一点。
答案 0 :(得分:1)
使用jquery的has attribute selector选择所有具有背景属性的td
$("td[background]").each(function(){
$(this).attr("background","http://alligatorperformanceblog.com/vspfiles/templates/AlligatorPerform/images/Grid_Single_Divider_Vert.gif");
});