search

Home  >  Q&A  >  body text

angular.js - ng-bind-html 输出的内容中含有<input>,并且可以输入,怎样可以禁止对<input>输入

富文本框用的是 text-angular,展示用 ng-bind-html输出

编辑时 是复制了页面一段内容进去的,因为是表单,所以将输入框也一同复制了进去,

然后展示的时候,还是可以在输入框里进行编辑:

解决要求编辑时可以将输入框复制进来,但是展示时不能在输入框里再进行输入。

大家讲道理大家讲道理2744 days ago967

reply all(2)I'll reply

  • 给我你的怀抱

    给我你的怀抱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.

    reply
    0
  • 阿神

    阿神2017-05-15 17:00:34

    Input has a readonly attribute

    <input type="text" readonly="readonly" /> 
    

    That’s good

    reply
    0
  • Cancelreply