您好,登錄后才能下訂單哦!
一、表單選擇器
:input:獲取所有表單中的元素,包含input元素、textarea元素、select元素、button元素。
例如:
HTML代碼:
<form> <input type="text" name="user" value="123"> <input type="password" name="pass" value="456"> <textarea></textarea> <select></select> </form>
JS代碼:
alert($(':input').size())
結果:4
如果選取name=“user”的元素,可以這樣:
$(':input[name="user"]')
注意:$(':input')這種選擇元素的方式本身沒有問題,但如果html代碼中有多個input元素,如果使用
$('form :input')
這種方式選擇元素會有助于提高效率
二、表單過濾器
元素默認都是enabled,即可用的。如果要把一個元素設置為不可用的,則在元素中加上disabled="disabled",例如:
<input type="text" disabled="disabled" name="user" value="123">
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。