码迷,mamicode.com
首页 > 其他好文 > 详细

14.5富文本编辑

时间:2018-11-05 15:13:30      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:元素   script   window   ted   fun   ram   span   col   idt   

1、iframe 方法

<body>
    <iframe name="richedit" src="表单验证.html" style="height: 500px;width: 500px;"></iframe>    
    <script>
        window.onload= function(){
            frames[‘richedit‘].document.designMode = ‘on‘;
        }
    </script>
 </body>

 

2、使用contenteditable属性

 <body>
    <div style=‘width:200px;height:200px;border:1px solid black‘ id=‘richedit‘ contenteditable></div>
    <script>
        var div = document.getElementById(‘richedit‘);
        div.contenteditable = ‘true‘;

    </script>
 </body>

contenteditable属性有3个可能的值:

true:表示打开

false:表示关闭

inherit:表示从父元素继承

 

14.5富文本编辑

标签:元素   script   window   ted   fun   ram   span   col   idt   

原文地址:https://www.cnblogs.com/jokes/p/9909085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!