jQuery选择没有colspan属性的td的代码
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:$("#tableNametd:not([colspan])")下面是一些补充资料:filter()和not():$(do...
复制代码 代码如下:
$("#tableName td:not([colspan])")
下面是一些补充资料:
filter()和not():
<script type="text/javascript">
$(document).ready(function() {
//输出 hello
alert($("p").filter(".selected").html());
//输出 How are you?
alert($("p").not(".selected").html());
});
</script>
</head>
<body>
<p>Hello</p><p>How are you?</p>
<>
</body>