1、iframe 方法
<body>
<iframe name="richedit" src="表单验证.html" style="height: 500px;width: 500px;"></iframe>
<script>
window.onload= function(){
frames[‘richedit‘].document.designMode = ‘on‘;
}
</script>
</body>
2、使用contenteditable属性
<body>
<div style=‘width:200px;height:200px;border:1px solid black‘ id=‘richedit‘ contenteditable></div>
<script>
var div = document.getElementById(‘richedit‘);
div.contenteditable = ‘true‘;
</script>
</body>
contenteditable属性有3个可能的值:
true:表示打开
false:表示关闭
inherit:表示从父元素继承
原文:https://www.cnblogs.com/jokes/p/9909085.html