頁面回車事件

$(document).on('keyup', function (e) {
    var theEvent = window.event || e;
    var code = theEvent.keyCode || theEvent.which;
    if (code == 13) {
        $("#"+id).click();
    }
});
相關文章
相關標籤/搜索