jQuery綁定enter事件

    有時咱們寫jQuery綁定按鈕事件時,執行成功後卻發現,習慣性地按下「Enter」鍵不能提交?是否是咱們要從新將「綁定按鈕事件」再寫一遍成「綁定enter鍵盤事件」呢?No!No!No!ide

    只須要將鍵盤事件綁定按鈕便可,就是這樣簡單……,綁定按鍵後就會執行相應的「綁定按鈕事件」了。spa


    $(function(){
        $("#button").bind("click",function(){
            /*按鈕綁定事件*/
        });
        
        /*鍵盤綁定按鍵綁定事件*/   
        $(document).keydown(function(event){
            if (event.Code == 13){
                $("#button").click();
            }
        });
    });
相關文章
相關標籤/搜索