当我使用键盘快捷键剪切或复制或粘贴任何选项时,我有两个同意的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