제이쿼리 jQuery( ":button" )

· 8년 전 · 1539

제이쿼리 jQuery( ":button" )


설명 : 버튼 요소의 모든 요소와 버튼 유형의 요소를 선택합니다.


$( ":button" )유효한 CSS 를 사용 하는 것과 동일한 선택자가 $( "button, input[type='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-1.10.2.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>


|
댓글을 작성하시려면 로그인이 필요합니다. 로그인

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
jQuery 8년 전 조회 2,002
jQuery 8년 전 조회 1,622
jQuery 8년 전 조회 1,635
jQuery 8년 전 조회 1,589
jQuery 8년 전 조회 1,264
jQuery 8년 전 조회 1,427
jQuery 8년 전 조회 1,458
jQuery 8년 전 조회 1,373
jQuery 8년 전 조회 2,266
jQuery 8년 전 조회 1,749
PHP 8년 전 조회 3,781
jQuery 8년 전 조회 1,653
jQuery 8년 전 조회 1,930
jQuery 8년 전 조회 1,790
jQuery 8년 전 조회 1,540
jQuery 8년 전 조회 2,207
jQuery 8년 전 조회 1,736
jQuery 8년 전 조회 2,058
jQuery 8년 전 조회 1,851
jQuery 8년 전 조회 2,079
jQuery 8년 전 조회 1,769
jQuery 8년 전 조회 1,551
jQuery 8년 전 조회 1,358
jQuery 8년 전 조회 1,787
jQuery 8년 전 조회 2,408
jQuery 8년 전 조회 1,422
jQuery 8년 전 조회 1,830
jQuery 8년 전 조회 1,813
jQuery 8년 전 조회 2,612
jQuery 8년 전 조회 2,106
🐛 버그신고