返回列表 發帖

練習十、jQuery的元素查詢與事件綁定

jQuery的元素查詢與事件綁定

  1. <!DOCTYPE html>
  2. <html>
  3.         <head>
  4.                 <meta charset="UTF-8">
  5.                 <title></title>
  6.                 <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
  7.         </head>
  8.         <body>
  9.                 <input id="year"/>
  10.                 <button id="btn">來按我</button>
  11.                 <script type="text/javascript">
  12.                 $("#btn").click(test);
  13.                 function test()
  14.                 {
  15.                         alert(document.getElementById("year").value);
  16.                         alert($("#year").val());
  17.                 }
  18.                 </script>
  19.         </body>
  20. </html>
複製代碼

TOP

  1. <!DOCTYPE html>
  2. <html>
  3.         <head>
  4.                 <meta charset="UTF-8">
  5.                 <title></title>
  6.         <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
  7.         </head>
  8.         <body>

  9.                 <input id="year">
  10.                 <button id="btn">tt</button>
  11.                 <script type="text/javascript">
  12.                 $("#btn").click(test);
  13.                 function test ()
  14.                 {

  15.                         alert($("#year").val());
  16.                 }

  17.                 </script>

  18.         </body>
  19. </html>
複製代碼

TOP

  1. !DOCTYPE html>
  2. <!-- saved from url=(0045)file:///C:/Users/student/Desktop/8545455.html -->
  3. <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  4.             <meta charset="UTF-8">
  5.             <title></title>
  6.             <script src="./8545455_files/jquery-1.11.0.min.js"></script>
  7.         </head>
  8.         <body>
  9.                 <input id="btn">
  10.                 <button id="test();"> 按鈕 </button>

  11.              <script type="text/javascript">
  12.              $("btn").click(test);
  13.              function test () {
  14.                 alert(document.getElementById("year").value);
  15.                      alert($("#year")).val()
  16.              }
  17.              </script>
  18.         
  19. </body></html>
複製代碼

TOP

  1. <!DOCTYPE html>
  2. <html>
  3.         <head>
  4.                 <meta charset = "UTF-8">
  5.                 <title>123456789</title>
  6.         </head>
  7.         <body>
  8.                 <input id="g" />
  9.                 <button onclick="gg()" >按鈕</button>
  10.                 <script type="text/javascript">
  11.                 function gg () {
  12.                         alert(document.getElementById("g").value);
  13.                 }

  14.                                         </script>

  15.         </body>
  16. </html>
複製代碼

TOP

  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <meta charset="UTF-8">
  5.     <title>基本練習</title>
  6.   </head>
  7.   <body>
  8.     <input id="z">
  9.     <button onclick>Super Power Beat Down </button>

  10.     <script type="text/javascript">
  11.   
  12.     fuction z()
  13.     {
  14.       alert(document.gatElementId("value").value);
  15.     }         

  16.     </script>

  17.     </script>

  18.   </body>
  19. </html>
複製代碼

TOP

返回列表