ホームページ >ウェブフロントエンド >jsチュートリアル >jQuery:入力セレクターの使い方の詳細説明
概要
すべての 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>, ]
このセレクターは、すべての入力要素と一致します。例: 22e1bb649e3e439c82b64204a5f95e3f など
文法構造:
$(":input")
サンプルコード:
:input选择器-脚本之家
上記のコードを使用すると、ボタンをクリックした後に入力要素を非表示にすることができます。
以上がjQuery:入力セレクターの使い方の詳細説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。