jQuery 表單事件與遍歷詳情

表單事件

.blur()

為 "blur" 事件綁定一個處理函數,或者觸發元素上的 "blur" 事件(註:此事件不支持冒泡)。

$('#other').click(function() {
  $('#target').blur();
});

.focus()

為 JavaScript 的 "focus" 事件綁定一個處理函數,或者觸發元素上的 "focus" 事件。

$('#target').focus(function() {
  alert('Handler for .focus() called.');
});

.change()

為JavaScript 的 "change" 事件綁定一個處理函數,或者觸發元素上的 "change" 事件。

$('.target').change(function() {
  alert('Handler for .change() called.');
});

.submit()

當用戶試圖提交表單時,就會在這個表單元素上觸發submit事件。它隻能綁定在<form>元素上。

$('#target').submit(function() {
  alert('Handler for .submit() called.');
});

遍歷

.map()

通過一個函數匹配當前集合中的每個元素,產生一個包含新的jQuery對象。

由於返回值是一個jQuery包裹的數組,所以通常會使用get()方法將其轉換成普通的數組。

<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title></title>
    <script src="./jquery-3.6.0.min.js" charset="utf-8"></script>
  </head>
  <body>
    <form method="post" action="">
       <fieldset>
         <div>
           <label for="two">2</label>
           <input type="checkbox" value="2" id="two" name="number[]">
         </div>
         <div>
           <label for="four">4</label>
           <input type="checkbox" value="4" id="four" name="number[]">
         </div>
         <div>
           <label for="six">6</label>
           <input type="checkbox" value="6" id="six" name="number[]">
         </div>
         <div>
           <label for="eight">8</label>
           <input type="checkbox" value="8" id="eight" name="number[]">
         </div>
       </fieldset>
      </form>
     <script type="text/javascript">
       $('input').map(function(index) {
         console.log(this.id);
       })
     </script>
  </body>
</html>

map()方法會返回一個新的數組。

.each()

遍歷一個jQuery對象,為每個匹配元素執行一個函數。

<ul>
    <li>foo</li>
    <li>bar</li>
</ul>
$( "li" ).each(function( index ) {
  console.log( index + ":" + $(this).text());
});

each()返回的是原來的數組,並不會新創建一個數組。

.get()

通過jQuery對象獲取一個對應的DOM元素。

<ul>
  <li id="foo">foo</li>
  <li id="bar">bar</li>
</ul>
console.log( $( "li" ).get( 0 ) );

到此這篇關於jQuery 表單事件與遍歷詳情的文章就介紹到這瞭,更多相關jQuery 表單事件內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: