14.5富文本编辑
Posted jokes
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了14.5富文本编辑相关的知识,希望对你有一定的参考价值。
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:表示从父元素继承
以上是关于14.5富文本编辑的主要内容,如果未能解决你的问题,请参考以下文章