Selectors/API/jQuery
:reset
全てのreset要素を選択します。
サンプル
サンプル1
:resetセレクターで選択される要素が赤枠で表示されます。
<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>
var input = $(":reset").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
[全コードを表示]
[実行結果を単体で表示]