搜索

首页  >  问答  >  正文

angular.js - Angularjs设置textarea内的默认内容

有个比较奇葩的需求。。就是在鼠标未选中textarea时文本框内会有一行灰色的提示语。这个很简单,用和value,placeholder什么的就能实现了。但是点击选中textarea也就是开始输入内容时,textarea内要有一行默认填入的内容。。
没有图,我就用格式来解释一下。

【#我是默认标题# 我是placeholder】-->未选中textarea之前它显示的内容。
【#我是默认标题# 】-->选中textarea后文本框内的内容,placeholder消失但是默认标题保留。

请问这样的功能要怎么样实现?

我想大声告诉你我想大声告诉你2776 天前682

全部回复(2)我来回复

  • 迷茫

    迷茫2017-05-15 16:53:35

    雷雷

    回复
    0
  • 淡淡烟草味

    淡淡烟草味2017-05-15 16:53:35

    感觉你这个问题还是做成指令比较好,下面就是我的基本实现吧。

    html

    <p ng-controller="main"> <textarea my-textarea="#我是默认标题#" placeholder="我是placeholder" ng-model="myText" ng-change="log()"></textarea> </p> <script type="text/javascript"> var app = angular.module('app', []); app.directive('myTextarea', function() { return { require: 'ngModel', link: function(scope, ele, attrs, modelController) { var text = attrs.myTextarea; var placeholder = attrs.placeholder; var alltext = text + ' ' + placeholder; ele.attr('placeholder', alltext); ele.on('focus', function() { if (!modelController.$modelValue) { setVal(text); } }); ele.on('blur', function() { if (modelController.$modelValue === text) { setVal(''); } }); function setVal(v) { modelController.$setViewValue(v); modelController.$render(); } } } }); app.controller('main', ['$scope', function($scope){ $scope.log = function() { console.log($scope.myText) } }]);

    基本思路就是通过model的controller来操控。

    回复
    0
  • 取消回复