富文本框用的是 text-angular,展示用 ng-bind-html输出
编辑时 是复制了页面一段内容进去的,因为是表单,所以将输入框也一同复制了进去,
然后展示的时候,还是可以在输入框里进行编辑:
解决要求编辑时可以将输入框复制进来,但是展示时不能在输入框里再进行输入。
给我你的怀抱2017-05-15 17:00:34
After the content is loaded, find the element that needs to be restricted and add the readonly or disabled attribute.
阿神2017-05-15 17:00:34
Input has a readonly attribute
<input type="text" readonly="readonly" />
That’s good