首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

iframe编辑器一

2012-08-27 
iframe编辑器1iframe frameborder0 allowtransparencytrue ideditIframe width500 height3

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

热点排行