angularjs使用div模拟textarea文本框的方法
2019/6/26 23:25:46
本文主要是介绍angularjs使用div模拟textarea文本框的方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
html:
<div class="simulate-textarea" ng-model="view.text" contenteditable="true" placeholder="请输入内容"></div>
Angularjs指令:
/** * div模拟textarea输入框双向数据绑定指令 */ .directive('contenteditable', [function() { return { require: 'ngModel', link: function(scope, element, attrs, ctrl) { //view -> model element.bind('input', function() { scope.$apply(function() { ctrl.$setViewValue(element.html()); }); }); //model -> view ctrl.$render = function() { element.html(ctrl.$viewValue); }; } }; }
css:
.simulate-textarea { margin-left: 84px; display: inline-block; width: calc(100% - 84px); /*border: 1px solid #dddddd;*/ min-height:20px; _height: 20px; max-height: 120px; /*border-radius: 4px;*/ /*padding: 4px 6px;*/ outline: 0; word-break:break-all; word-wrap: break-word; white-space: pre-wrap; overflow-x: hidden; overflow-y: auto; line-height: 20px; font-size: 12px; }
以上这篇angularjs使用div模拟textarea文本框的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持找一找教程网。
这篇关于angularjs使用div模拟textarea文本框的方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Vue新手入门教程:从零开始学习Vue框架
- 2024-11-23如何集成Ant Design Vue的图标
- 2024-11-23如何集成Ant Design Vue图标
- 2024-11-23使用vue CLI快速搭建Vue项目教程
- 2024-11-23Vue CLI多环境配置简单教程
- 2024-11-23Vue3入门教程:轻松搭建你的第一个Vue3应用
- 2024-11-23Vue3+Vite快速上手指南
- 2024-11-23Vue3阿里系UI组件入门指南
- 2024-11-23Vue3的阿里系UI组件入门指南
- 2024-11-23Vue3公共组件入门教程