当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。