jQuery1.8.0帮助手册选择器ancestor descendant
上一篇:selector1,selec... 下一篇:parent > chi...

ancestor descendant

返回值:Arrayancestor descendant

概述

在给定的祖先元素下匹配所有的后代元素

参数

ancestorSelectorV1.0

任何有效选择器

descendantSelectorV1.0

用以匹配元素的选择器,并且它是第一个选择器的后代元素

示例

描述:

找到表单中所有的 input 元素

HTML 代码:

  
  
  
jQuery 代码:
$("form input")
结果:
[ ,  ]
上一篇:selector1,selec... 下一篇:parent > chi...