當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery :button用法及代碼示例


用法
button selector

說明:選擇所有按鈕元素和按鈕類型的元素。

  • 添加的版本:1.0jQuery( ":button" )

使用有效 CSS 的與 $( ":button" ) 等效的選擇器是 $( "button, input[type='button']" )

其他注意事項:

  • 因為 :button 是 jQuery 擴展而不是 CSS 規範的一部分,所以使用 :button 的查詢無法利用本機 DOM querySelectorAll() 方法提供的性能提升。為了在使用 :button 選擇元素時獲得最佳性能,首先使用純 CSS 選擇器選擇元素,然後使用 .filter(":button")

例子:

找到所有按鈕輸入並標記它們。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>button demo</title>
  <style>
  textarea {
    height: 35px;
  }
  div {
    color: red;
  }
  fieldset {
    margin: 0;
    padding: 0;
    border-width: 0;
  }
  .marked {
    background-color: yellow;
    border: 3px red solid;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<form>
  <fieldset>
    <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>
  </fieldset>
</form>
 
<div></div>
 
<script>
var input = $( ":button" ).addClass( "marked" );
$( "div" ).text( "For this type jQuery found " + input.length + "." );
// Prevent the form from submitting
$( "form" ).submit(function( event ) {
  event.preventDefault();
});
</script>
 
</body>
</html>

演示:

相關用法


注:本文由純淨天空篩選整理自jquery.com大神的英文原創作品 :button。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。