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>

posted on 2008-04-26 09:37  leanco  阅读(106)  评论(0)    收藏  举报

导航