jQueryテキストセレクター
翻訳結果:
text
English[tekst] American[tɛkst]
n. テキスト、原文; テキスト、教科書; テーマ; バージョン
v .テキストメッセージを送信
jQueryテキストセレクター構文
関数:: テキスト セレクターは、テキスト タイプの <input> 要素を選択します。
構文: $(":text")
jQueryテキストセレクター例
<html> <head> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(":text").css("background-color","#B2E0FF"); }); </script> </head> <body> <html> <body> <form action=""> Name: <input type="text" name="user" /> <br /> Password: <input type="password" name="password" /> <br /> <button type="button">Useless Button</button> <input type="button" value="Another useless button" /> <br /> <input type="reset" value="Reset" /> <input type="submit" value="Submit" /> <br /> </form> </body> </html> </body> </html>
[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します