91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jQuery中的常用事件有哪些

發布時間:2022-03-14 09:10:04 來源:億速云 閱讀:495 作者:小新 欄目:開發技術

小編給大家分享一下jQuery中的常用事件有哪些,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

一、jQuery事件的分類

jQuery事件是對JavaScript事件的封裝,常用事件分類如下:

1、基礎事件

window事件。鼠標事件。鍵盤事件。表單事件。

2、復合事件是多個事件的組合

鼠標光標懸停。鼠標連續點擊。

二、鼠標事件

鼠標事件是當用戶在文檔上面移動或單擊鼠標時而產生的事件,常用鼠標事件有:

jQuery中的常用事件有哪些

三、鍵盤事件

用戶每次按下或者釋放鍵盤上的按鍵時都會產生事件,常用鍵盤事件如下:

jQuery中的常用事件有哪些

四、表單事件

當元素獲得焦點時,會觸發focus()事件,失去焦點時,會觸發blur()事件。

表單提交時會觸發submit()事件。

jQuery中的常用事件有哪些

五、綜合示例

jQuery中的常用事件有哪些

需求說明:

  • 1、用戶名輸入框獲得焦點時輸入框背景色為淺藍色,失去焦點時還原為白色背景色。

  • 2、鼠標移至登錄按鈕時字體變粗,移出時整體恢復正常。

  • 3、敲擊鍵盤的“回車”鍵時觸發表單提交事件。

代碼:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>事件演示示例</title>
    <style type="text/css">
        #login{
            width: 400px;
            height: 250px;
            background-color: #f2f2f2;
            border:1px solid #DDDDDD;
            padding: 5px;
        }
        #login fieldset {
            border: none;
            margin-top: 10px;
        }
        #login fieldset legend{
            font-weight: bold;
        }
        #login fieldset p{
            display: block;
            height: 30px;
        }
        #login fieldset p label {
            display: block;
            float:left;
            text-align: right;
            font-size: 12px;
            width: 90px;
            height: 30px;
            line-height: 30px;
        }
        #login fieldset p input {
            display: block;
            float:left;
            border: 1px solid #999;
            width: 250px;
            height: 30px;
            line-height: 30px;
        }
        #login fieldset p input.code{
            width: 60px;
        }
        #login fieldset p img{
            margin-left: 10px;
        }
        #login fieldset p a{
            color: #057BD2;
            font-size: 12px;
            text-decoration: none;
            margin: 10px;
        }
        #login fieldset p input.btn{
            background: url("./images/login.gif") no-repeat;
            width: 98px;
            height: 32px;
            margin-left: 60px;
            color: #ffffff;
            cursor: pointer;
        }
        #login fieldset p input.input_focus{
            background-color: #BEE7FC;
        }
        </style>
       <!--引入jQuery-->
       <script src="../jquery-3.3.1.js"></script>
       <!--javascript-->
       <script>
         $(function(){
             // 用戶名輸入框的焦點事件
             $("input[name='member']").focus(function(){
                 $(this).addClass("input_focus");
             });
             // 用戶名失去焦點
             $("input[name='member']").blur(function(){
                 $(this).removeClass("input_focus");
             });

             // 鼠標移入移出事件
             $(".btn").mouseover(function(){
                 $(this).css("font-weight","bold");
             });
             $(".btn").mouseout(function(){
                 $(this).css("font-weight","normal");
             });

             // 鍵盤事件,敲擊回車鍵進行表單提交,keyCode的數值代表不同的鍵盤按鍵
             // js需要區分keyCode(IE)和which(FF)的兼容性,event.keyCode||event.which用來考慮兼容性
             $(document).keypress(function(e){
                 if(e.keyCode==13){
                     //$("#login").submit();
                     // 模擬表單提交
                     alert("觸發表單的提交事件");
                 }
             });
         });
       </script>
</head>
<body>
    <form id="login">
        <fieldset>
          <legend>用戶登錄</legend>
          <p>
              <label>用戶名:</label>
              <input name="member" type="text" />
          </p>
          <p>
              <label>密碼:</label>
              <input name="password" type="text" />
          </p>
          <p>
              <label>驗證碼:</label>
              <input name="code" type="text" class="code" />
              <img src="images/code.gif" width="80" height="30" /><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >換一張</a>
          </p>
          <p>
              <input name="" type="button" class="btn" value="登錄" />
              <a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >注冊</a><span>|</span><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >忘記密碼?</a>
          </p>
        </fieldset>
      </form>
</body>
</html>

效果:

jQuery中的常用事件有哪些

看完了這篇文章,相信你對“jQuery中的常用事件有哪些”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

岐山县| 阿图什市| 方城县| 凤凰县| 翁源县| 西充县| 新乡县| 隆化县| 阳曲县| 宜宾市| 灵宝市| 康马县| 耒阳市| 韩城市| 呼和浩特市| 巫山县| 卓尼县| 丽水市| 宣汉县| 博湖县| 瑞昌市| 莱州市| 兴文县| 锦屏县| 凤翔县| 达州市| 安多县| 遵义市| 绥宁县| 合山市| 新建县| 普兰店市| 巨鹿县| 墨玉县| 江川县| 兴文县| 修武县| 平定县| 凤翔县| 镇赉县| 五常市|