选择其中包含<input />和<section>标签的所有标签</section> <table> </table>

时间:2014-09-17 12:41:53

标签: javascript jquery html5 jquery-selectors

如何选择其中包含<table><input>标记的所有<section>代码 -by jQuery?

类似的东西:

var tables_with_input = $( "table" that_contain input,section)  ///pseudo code

2 个答案:

答案 0 :(得分:3)

您可以使用:has,它会检查匹配的元素是否包含某些元素等。

$('table:has(input, section)')

FIDDLE

答案 1 :(得分:1)

var tables_with_input = $(context).find('table').has('input');