<body> <form action="#"> <input type="text"> </form> <form action="#" name="biaodan"> <input type="text"> </form> <script> /* 該屬性會獲得一個類數組對象集合 */ var form = document.forms; console.log( form );// 顯示 HTMLCollection(2) - 類數組對象 </script> </body>
經過表單名稱會獲取到指定名稱的表單元素數組
<body> <form action="#"> <input type="text"> </form> <form action="#" name="biaodan"> <input type="text"> </form> <script> var formName = document.biaodan; console.log( formName );// 顯示 <form action="#" name="biaodan">...</form> </script> </body>
<body> <form action="#"> <input type="text" name="biaodan"> <input type="submit"> </form> <script> /* 獲取表單元素 */ var form = document.forms[0]; /* 經過HTMLFormElement對象提供的elements屬性來獲取指定表單中的全部組件 */ var zujian = form.elements; console.log( zujian );// 顯示 HTMLFormControlsCollection(2) - 類數組對象 </script> </body>
獲取當前輸入框中所選擇的文本內容瀏覽器
<body> <form action="#"> <input type="text" id="input" value="請輸入你的帳號"> <input type="submit"> </form> <script> /* 定位指定元素 */ var input = document.getElementById( 'input' ); /* 爲指定表單組件綁定獲取焦點事件 */ input.addEventListener( 'focus', function () { /* select()方法 - 選擇當前輸入框中所選擇的文本內容(默認爲全選) */ input.select(); } ); </script> </body>
只要選擇文本內容就會觸發select()方法code
selectionStart()方法orm
selectionEnd()方法對象
<body> <form action="#"> <input type="text" id="input" value="請輸入你的帳號"> <input type="submit"> </form> <script> /* 定位指定元素 */ var input = document.getElementById( 'input' ); /* select事件 * 只要選擇文本內容就會觸發select()方法 * selectionStart - 選擇文本內容開始的位置(索引值) * selectionEnd - 選擇文本內容結束的位置(索引值) */ input.addEventListener( 'select', function () { console.log( input.selectionStart, input.selectionEnd );// 顯示 對應文本內容的索引值 /* 獲取輸入框中的文本內容 */ var wenben = input.getAttribute( 'value' ); /* 經過截串的方式獲取到用戶選取的文本內容 */ var neirong = wenben.substring( input.selectionStart,input.selectionEnd ); console.log( neirong ); } ); </script> </body>
設置選擇的文本內容索引
<body> <form action="#"> <input type="text" id="input" value="請輸入你的帳號"> <input type="submit"> </form> <script> /* 定位指定表單元素 */ var form = document.forms[0]; /* 獲取指定表單中的組件 */ var zujian = form.elements[0]; /* 爲指定表單組件綁定獲取焦點事件 */ zujian.addEventListener( 'focus', function(){ /* setSelectionRange()方法 * 設置選擇的文本內容 * 若是焦點在文本內容的最後面會全選文本內容 * 若是焦點在文本內容中的任意位置(不是最後)會選中設置文本內容 */ zujian.setSelectionRange( 1, 5 ); } ); </script> </body>
length屬性事件
<option>
元素的個數options屬性ip
<option>
元素(類數組集合)selectedIndex屬性element
<body> <form action="#"> <select id="game"> <option id="lr" value="lr">怪物獵人</option> <option value="td">天涯明月刀</option> <option value="sm">使命召喚</option> </select> </form> <script> /* 定位指定表單組件 */ var game = document.getElementById( 'game' ); console.log( game.length );// 顯示 3(列表項個數) console.log( game.options );// 顯示 HTMLOptionsCollection(3)(類數組對象集合) console.log( game.selectedIndex );// 顯示 0(選中項的索引值) </script> </body>
index屬性get
selected屬性
text屬性
value屬性
<body> <form action="#"> <select id="game"> <option id="lr" value="lr">怪物獵人</option> <option value="td">天涯明月刀</option> <option value="sm">使命召喚</option> </select> </form> <script> /* 定位指定表單組件 */ var lieren = document.getElementById( 'lr' ); console.log( lieren.index );// 顯示 0(當前列表項的索引值) console.log( lieren.selected );// 顯示 true(當前列表項是否被選中) console.log( lieren.text );// 顯示 怪物獵人(當前列表項的文本內容) console.log( lieren.value );// 顯示 lr(當前列表項的value屬性值) </script> </body>
<body> <form action="#"> <input type="text" id="kuang"> <input type="submit"> </form> <script> var form = document.forms[0]; form.addEventListener('submit',function(event){ // 實現表單驗證 var kuang = document.getElementById('kuang'); var kuangValue = kuang.value; if (kuangValue === '' || kuangValue === undefined || kuangValue === null) { console.log('xxxxxx'); // 阻止默認行爲 event.preventDefault(); } }); </script> </body>
該方法可用於提交表單
<body> <form action="#"> <input type="text" id=kuang"> <input id="btn" type="button" value="提交"> </form> <script> var btn = document.getElementById('btn'); btn.addEventListener('click',function(){ var form = document.forms[0]; form.submit(); }); </script> </body>