当(rowspan="1")rowspan里面的值为1的时候,触发js 要怎么做
1 回答
沧海一幻觉
TA贡献1824条经验 获得超5个赞
$("table").each(function(){
if($(this).find("tr").length < 2){
$(this).css("margin","0");
console.log(1)
}else{
console.log(2)
}
})
效果达到预期的效果,感觉写的有点low,请多指教
添加回答
举报
0/150
提交
取消