回車事件を実現する

449 ワード


$(function(){
    $("#btnLogin").click(function(){
        alert("      !");
    });
    $(document).keydown(function(){
    //       
    if(event.keyCode == 13) {
            //        
        }
    });
});

<input type="button" value="  " id="btnLogin" />