jq 回车提交指定按钮

$(this).keydown(function (e) {
                var key = window.event ? e.keyCode : e.which;
                if (key.toString() == "13") {
                    $("#MainContent_btnSearch").click();
                    return false;
                }
            });
原文地址:https://www.cnblogs.com/shiningrise/p/8379348.html