2012-06-09 45 views
2

我在尋找我的inputs表上,並將它們添加到inputs變量指定的組件:jQuery的 - 發現形式

var inputs = $(this).parents("form").eq(0).find(".input:visible:enabled"); 

我怎麼能這個搜索一樣select其他組件的擴展。因此,請按form上的順序添加inputsselects

喜歡的東西

var inputs = $(this).parents("form").eq(0).find(".input:visible:enabled OR .select"); 

回答

1
$(this).parents("form").find(".input:visible:enabled, .select"); 

多個選擇將由逗號(,)分離。

更多看到here

+0

OMG,我是白癡,我已經嘗試過單獨選擇,而是選擇了錯誤的組件。它的工作原理,感謝:-) – gaffcz

+0

@gaffcz歡迎您。不要忘記接受 – thecodeparadox

+0

這很酷,你只是複製我的確切答案到你的 –