键盘回车触发事件

键盘回车触发事件:

$('#workSheetCode').bind('keyup', function(event) {
    if (event.keyCode == "13") {
        init();
    }
});

你可能感兴趣的:(前端)