博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
angular使directive让div contenteditable & ng-model生效
阅读量:6162 次
发布时间:2019-06-21

本文共 454 字,大约阅读时间需要 1 分钟。

  hot3.png

.directive("contenteditable", function(){  return {    restrict: "A",    require: "ngModel",    link: function(scope, element, attrs, ngModel) {      function read() {        ngModel.$setViewValue(element.html());      }      ngModel.$render = function() {        element.html(ngModel.$viewValue || "");      };      element.bind('blur keyup change', function() {        scope.$apply(read);      });    }  };})

转载于:https://my.oschina.net/imot/blog/482408

你可能感兴趣的文章
淘宝的几个架构图
查看>>
linux后台运行程序
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>
Oracle中drop user和drop user cascade的区别
查看>>
登记申请汇总
查看>>
Android Jni调用浅述
查看>>
CodeCombat森林关卡Python代码
查看>>
(二)Spring Boot 起步入门(翻译自Spring Boot官方教程文档)1.5.9.RELEASE
查看>>
Shell基础之-正则表达式
查看>>
讲讲吸顶效果与react-sticky
查看>>
c++面向对象的一些问题1 0
查看>>
售前工程师的成长---一个老员工的经验之谈
查看>>
Get到的优秀博客网址
查看>>
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>
Python学习--time
查看>>
在OSCHINA上的第一篇博文,以后好好学习吧
查看>>
Spring常用注解
查看>>
linux:yum和apt-get的区别
查看>>
Sentinel 1.5.0 正式发布,引入 Reactive 支持
查看>>
数据库之MySQL
查看>>