2010-12-13 114 views

回答

6

什麼

$container.find('input, select'); 
+0

規格:http://api.jquery.com/multiple-selector/ – 2010-12-13 09:43:40

5

您可以使用:input選擇

$containder.find(":input") 

這選擇所有輸入,textarea,選擇和按鈕元素。

相關問題