제이쿼리 jQuery( ":button" ) > 개발자팁

개발자팁

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

제이쿼리 jQuery( ":button" ) 정보

jQuery 제이쿼리 jQuery( ":button" )

본문

제이쿼리 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>


추천
0

댓글 0개

전체 5,352
개발자팁 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT