HTML
<input type="text" value="test" select-on-click />JS
module.directive('selectOnClick', function () {
return {
restrict: 'A',
link: function (scope, element, attrs) {
element.on('click', function () {
this.select();
});
}
};
});
http://stackoverflow.com/questions/14995884/select-text-on-input-focus-in-angular-js
沒有留言:
張貼留言
留個話吧:)