首頁 > web前端 > js教程 > jQuery :input選擇器使用詳解

jQuery :input選擇器使用詳解

黄舟
發布: 2017-06-23 15:19:47
原創
1267 人瀏覽過

概述

匹配所有input, textarea, select 和button 元素

範例

描述:

#找到所有的input元素,以下這些元素都會被配對到。

HTML 程式碼:

<form> 
<input type="button" value="Input Button"/> 
<input type="checkbox" /> 
<input type="file" /> 
<input type="hidden" /> 
<input type="image" /> 
<input type="password" /> 
<input type="radio" /> 
<input type="reset" /> 
<input type="submit" /> 
<input type="text" /> 
<select>
<option>Option</option>
</select> 
<textarea>
</textarea> 
<button>Button</button> 
</form>
登入後複製

jQuery 程式碼:

$(":input")
登入後複製
登入後複製

結果:

[ <input type="button" value="Input Button"/>, 
<input type="checkbox" />, 
<input type="file" />, 
<input type="hidden" />, 
<input type="image" />, 
<input type="password" />, 
<input type="radio" />, 
<input type="reset" />, 
<input type="submit" />, 
<input type="text" />, 
<select>
<option>Option</option>
</select>, 
<textarea>
</textarea>, 
<button>Button</button>, ]
登入後複製

此選擇器符合所有的input元素。例如:等等

語法結構:

$(":input")
登入後複製
登入後複製

實例代碼:






:input选择器-脚本之家
 
 
 
 
  • 读书
登入後複製

以上程式碼,點選按鈕後可以將input元素隱藏。

以上是jQuery :input選擇器使用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板