iframe编辑器1
<iframe frameborder="0" allowtransparency="true" id="editIframe" width="500" height="300"></iframe>
<input value="获取内容" onclick="getContent();" type="button"/>
<script type="text/javascript">
??? var frame = document.getElementById('editIframe').contentWindow;
??? frame.document.designMode = 'On';
?? // frame.document.contentEditable = true;
??? frame.document.open();
??? frame.document.writeln('<html><head>');
??? frame.document.writeln('<style>body {background:#fff;font-size:12px;margin: 2px; padding: 0px;color:#000;}</style>');
??? frame.document.writeln('</head><body></body></html>');
??? frame.document.close();
???
??? function getContent(){
??? ??? alert(frame.document.body.innerHTML);
??? }
</script>
?
mark下
http://ckeditor.com
http://www.kindsoft.net/index.php