可编辑框高度自适应

textarea 用 js 控制 row
contenteditable 的 css 属性 read-write-plaintext-only
html属性:
contenteditable=""
contenteditable="events"
contenteditable="caret"
contenteditable="plaintext-only"
contenteditable="true"
contenteditable="false"

contenteditable 用 js 拦截 parse 事件,改用:
去掉自动链接检测:document.execCommand("AutoUrlDetect", false, false);
document.execCommand("insertText")