ng-model没有使用document.execCommand()进行更新

时间:2017-09-12 11:57:47

标签: angularjs

当我使用键盘快捷键剪切或复制或粘贴任何选项时,我有两个同意的ng-model,但是如果我使用document.execCommand() ng-model没有得到更新,那么它只能用于活动的contenteditable 。

<div ng-model="test" contenteditable="true"></div>
<div ng-model="test" contenteditable="true"></div>


$scope.cutSelection= function(){ 
    document.execCommand("cut");

} //only work for active contenteditable

我没有收到任何错误,只是没有更新不活跃的contenteditable

0 个答案:

没有答案