find
find(selector) ⇒ collection
find(collection) ⇒ collection [v1.0]
find(element) ⇒ collection [v1.0]
在当对象前集合内查找符合 CSS 选择器的每个元素的后代元素。
如果给定 Zepto 对象集合或者元素,过滤它们,只有当它们在当前 Zepto 集合对象中时,才回被返回。
var form = $('#myform')
form.find('input, select')
find(selector) ⇒ collection
find(collection) ⇒ collection [v1.0]
find(element) ⇒ collection [v1.0]
在当对象前集合内查找符合 CSS 选择器的每个元素的后代元素。
如果给定 Zepto 对象集合或者元素,过滤它们,只有当它们在当前 Zepto 集合对象中时,才回被返回。
var form = $('#myform')
form.find('input, select')