国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

    1. JavaScript tetikus ke atas acara (onmouseover)

      Acara mouseover, apabila tetikus bergerak ke atas objek, objek tersebut mencetuskan acara onmouseover dan melaksanakan program yang dipanggil oleh acara onmouseover.

      Contoh: Apabila tetikus bergerak ke elemen terikat pada acara onmouseover, kotak dialog

      <!DOCTYPE HTML>
      <html>
          <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <title>php.cn</title>
              <script>
                  function fun(){
                      window.alert("請確認(rèn)四周沒有人再點(diǎn)擊提交")
                  } 
              </script>
          </head>
          <body>
              <form>
                  機(jī)密:
                  <input name="txt" type="text" >
                  <input name="" type="button" value="提交" onmouseover="fun()"/>
              </form>
          </body>
      </html>


      muncul
      Meneruskan pembelajaran
      ||
      <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script> function fun(){ window.alert("請確認(rèn)四周沒有人再點(diǎn)擊提交") } </script> </head> <body> <form> 機(jī)密: <input name="txt" type="text" > <input name="" type="button" value="提交" onmouseover="fun()"/> </form> </body> </html>