jQuery选择没有colspan属性的td的代码_jquery
时间:2021-07-01 10:21:17
帮助过:9人阅读
代码如下:
$("#tableName td:not([colspan])")
下面是一些补充资料:
filter()和not():
输出 hello
alert($("p").filter(".selected").html());
//输出 How are you?
alert($("p").not(".selected").html());
});
script>
Hello
How are you?