输入框回车监听搜索

html:


js:

function enterSearch(){
    var event = window.event || arguments.callee.caller.arguments[0];
    if (event.keyCode == 13) {
        //搜索的方法
        vm.searchQy();
    }
}

你可能感兴趣的:(输入框回车监听搜索)