最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

H5富文本编辑器的详细介绍-H5教程

来源:http://erdangjiade.com/topic/131746.html H5程序员 2017-10-31 20:44浏览(704)

使用H5的全局属性contenteditable可以让DOM元素及其子元素变的可编辑

<p  contenteditable id="editor">
   </p>

样式代码

html,
body {
  overflow: hidden;
  width: 100%;
  height: 100%;
}* {
  margin: 0;
  padding: 0;
}
#editor {
  width: 100%;
  height: 100%;
  outline: none;
  padding-left: 15px;
}

* chrome 49下测试有效

以下方式使得用户初始输入的文本内容在p元素的包裹下

<p  contenteditable id="editor" spellcheck="false"><p><br/></p></p>

默认规则如下

否则将直接作为#editor元素的文本节点,即<p  contenteditable id="editor" spellcheck="false">文本内容</p>同事点击Enter将新增p元素,即<p  contenteditable id="editor" spellcheck="false">文本内容<p></p></p>

View Code

#editor中的所用元素都是可被删除的,当#editor为空元素时,用户再次输出内容还会应用默认规则,这里要监听这一状态,发生时将<p><br/></p>添入其中,并且定位光标到p元素的最后

定位光标代码

function cursorToEnd(element){
    
    element.focus();var range = window.getSelection();

    range.selectAllChildren(element);
    range.collapseToEnd();
    
}

window.getSelection() IE9已经支持

不定位可能发生以下情况

<p  contenteditable id="editor" spellcheck="false">
    111111
    <p><br/></p>
</p>

以上就是H5富文本编辑器的详细介绍的详细内容,更多请关注二当家的素材网其它相关文章!

评论0
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

1 2