jQuery 선택 기의 폼 요소 선택 기 상세 설명

3564 단어 jQuery선택 기
본 논문 의 사례 는 모두 에 게 폼 요소 선택 기 를 공유 하여 참고 하도록 제공 하 였 으 며,구체 적 인 내용 은 다음 과 같다.

<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  <title></title>
  <link rel="stylesheet" href="imooc.css" rel="external nofollow" type="text/css">
  <style> 
    input{
      display: block;
      margin: 10px;
      padding:10px;
    }
  </style>
  <script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script>
</head>

<body>
  <h2>        </h2>
  <h3>input、text、password、radio、checkbox</h3>
  <h3>submit、image、reset、button、file</h3>
  <div class="left first-div">
    <form>
      <input type="text" value="text  "/>
      <input type="password" value="password"/>
      <input type="radio"/> 
      <input type="checkbox"/>
      <input type="submit" />
      <input type="image" />
      <input type="reset" />
      <input type="button" value="Button" />
      <input type="file" />
    </form>
  </div>

  <script type="text/javascript">
    //     input, textarea, select   button   
    //:input               
    $(":input").css("border", "1px groove red"); 
  </script>

  <script type="text/javascript">
    //    input      text input  
    $(":text").css("background", "#A2CD5A");
  </script>

  <script type="text/javascript">
    //    input      password input  
    $(":password").css("background", "yellow");
  </script>

  <script type="text/javascript">
    //    input        ,   
    $(":radio").attr('checked','true');
  </script>

  <script type="text/javascript">
    //    input        ,   
    $(":checkbox").attr('checked','true'); 
  </script>

  <script type="text/javascript">
    //    input         ,      
    $(":submit").css("background", "#C6E2FF");
  </script>

  <script type="text/javascript">
    //    input           ,      
    $(":image").css("background", "#F4A460");
  </script>

  <script type="text/javascript">
    //    input           
    $(":button").css("background", "red");
  </script>

  <script type="text/javascript">
    //    input      file   
    $(":file").css("background", "#CD1076");
  </script>

</body>

</html>

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기