html编辑器
<iframe style="width: 100%; height:100" marginwidth="0" marginheight="0" frameborder="1" id="MsgFrame" src="about:blank"></iframe>
<script>
var editor;
editor = document.getElementById("MsgFrame").contentWindow;
editor.document.designMode = 'On';/*这个属性*/
editor.document.contentEditable = true;
editor.document.open();
editor.document.writeln('<html><head>');
editor.document.writeln("</head><body></body></html>");
editor.document.onclick = "alert()";
editor.document.close();
editor.document.charset="gb2312";
</script>
<script>
var editor;
editor = document.getElementById("MsgFrame").contentWindow;
editor.document.designMode = 'On';/*这个属性*/
editor.document.contentEditable = true;
editor.document.open();
editor.document.writeln('<html><head>');
editor.document.writeln("</head><body></body></html>");
editor.document.onclick = "alert()";
editor.document.close();
editor.document.charset="gb2312";
</script>
浙公网安备 33010602011771号