美文网首页
调用键盘搜索

调用键盘搜索

作者: LIsPeri | 来源:发表于2018-03-23 15:57 被阅读0次

    <form action="#">
    <input type="search" placeholder="输入关键字" ng-model="search.key" ng-focus="searchInput()"
    ng-enter="doSearch(search.key)">
    </form>
    function ngEnter() { //删除搜索框的历史记录
    return function(scope, element, attrs) {
    element.bind("keydown keypress", function(event) {
    if(event.which === 13) {
    scope.apply(function(){ scope.eval(attrs.ngEnter);
    });
    event.preventDefault();
    }
    });
    };
    }

    相关文章

      网友评论

          本文标题:调用键盘搜索

          本文链接:https://www.haomeiwen.com/subject/zgsxcftx.html