ng-model绑定不适用于div

AngularJS的两个绑定不适用于div。我希望我的div是可编辑的,但是没有发生。有人可以建议出什么问题吗?相同的绑定在文本框中也可以正常工作。这是我的代码:

<input type="text" ng-model="userProfile.firstName"/>

<div class="profile-name" contenteditable="true" ng-model="userProfile.firstName"></div>

回答:

请尝试此操作,它可能会有所帮助

https://github.com/angular/angular.js/issues/528

这是一个3岁的未解决问题,很多人希望解决。它被标记为post-1.2-milestone和,feature而不是错误。鉴于Angular.js于2014年2月发布于1.2.13,看来目前团队中没有人关心此问题。因此,最好滚动自己的代码或坚持使用input/

textarea控件。

以上是 ng-model绑定不适用于div 的全部内容, 来源链接: utcz.com/qa/401516.html

回到顶部