我在我的代码库中使用https://github.com/xing/wysihtml5作为编辑器,我想“锁定”部分代码使其不可编辑,如下所示:
<form>
<textarea id="wysihtml5-textarea" placeholder="Enter your text ..." autofocus>
<div>Some Editable Text here :) </div>
<div class="lockedForEditing" contenteditable="false">YOU CAN'T EDIT ME!!!</div>
<div>Some More editable code here </div>
</textarea>
</form>
有谁知道这是否可能?到目前为止,我已经尝试了几种方法,但都没有成功。我也没有在文档中看到任何内容。如果这是不可能的,你知道有可能的类似编辑器吗?