我正在寻找一种方法来使 HTML 富文本编辑器中的特定元素只读且用户无法修改。有没有办法实现这种行为?
我所指的富文本编辑器的一个示例是以下代码片段:
<html>
<head>
<script type="text/javascript">
var Editor = {
Init: function() {
$("#editor").get()[0].contentWindow.document.designMode = "on";
}
}
$(document).ready(function() { Editor.Init(); });
</script>
</head>
<body>
<iframe id="editor" style="width: 500px; height: 250px;"></iframe>
</body>
</html>
/托拜厄斯