`
lmh2072005
  • 浏览: 111603 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

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

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics