angular和angularjsAngularjsinput输⼊框值,被选中
即之前写的回车换⾏《》,接着⼜有输⼊框值,被选中。
个⼈觉得angularjs 中指令很好,在html中很多验证都会⽤到,但是,得多写。
如下代码实现:
/** --------------指令按下回车事件,单击事件 ”选中“输⼊框的值-----------*/
module.directive('selectline', function() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
//element.bind('mouseover',function(event){//⿏标滑到数据时,选中
//        this.select();
/
/});
element.bind('click',function(event){//点击时,选中
this.select();
});
element.bind('focus',function(event){//获取焦点时,选中
this.select();
});
}
};
});

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。