我正在研究jquery。在我的HTML中我有很多td,其中一些td有背景图像。喜欢
<td background="images/bgblue.jpg">
所以我想知道哪个td有背景图像。我想改变td的图像,它有背景=&#34; images / bgblue.jpg&#34;。
由于
答案 0 :(得分:0)
你可以把课程放到有背景的每一个td。之后,如果您使用jquery为该特定类设置新背景
答案 1 :(得分:-2)
尝试以下方式:
$(function(){
$('td').each(function(){
if($(this).attr('background')=='images/bgblue.jpg'){
$(this).attr('background','images/bgwhite.jpg');
}
})
})