:password vráti: Array < Element(y)>
Vyberie všetky elementy typu password.
$(':password')
je ekvivalentom k $('[type=password]')
a to označí všetky <input type="password">
elementy. Rovnako ako u iných pseudo-tried selektorov (tie ktoré začínajú ":") odporúča sa použiť názov tagu, alebo iný selektor; inak použije univerzálny selektor ("*"). Inými slovami, samotý $(':password')
je ekvivalentom k $('*:password')
, takže by ste mali používať namiesto toho $('input:password')
.
Pre zvolenie sady súviacich radio tlačidiel, môžte použiť: $('input[name=gender]:radio')
Priklady:
Nájde všetky password inputy.
<!DOCTYPE html> <html> <head> <style> textarea { height:45px; } </style> <script src="http://code.jquery.com/jquery-latest.js"></script> </head> <body> <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> <div> </div> <script> var input = $("input:password").css({background:"yellow", border:"3px red solid"}); $("div").text("For this type jQuery found " + input.length + ".") .css("color", "red"); $("form").submit(function () { return false; }); // so it won't submit </script> </body> </html>