账号密码登录
微信安全登录
微信扫描二维码登录

登录后绑定QQ、微信即可实现信息互通

手机验证码登录
找回密码返回
邮箱找回 手机找回
注册账号返回
其他登录方式
分享
  • 收藏
    X
    使用vue-quill-editor,获得到输入内容的html,怎样才能在外部的div中有跟编辑器里一样的显示效果
    67
    0

    我已经能使用vue-quill-editor获得到输入文本的html结构了,就像作者DEMO网站中的一样

    比如获得到:

    <h1 class="ql-align-center"> <span class="ql-font-serif"><span class="ql-cursor"></span>I am Example 2!</span></span> </h1> <p><br></p> <p><span class="ql-font-serif">Whenever you play the game of thrones, you either win or die. There is no middle ground.</span></p> <p><br></p> <p><strong class="ql-font-serif">Some war against sword and spear to win, and the others the crow and the paper to win.</strong></p> <p><br></p> <p><u class="ql-font-serif">Dead history is write in ink, the living sort in blood.</u></p> <p><br></p> <p><em class="ql-font-serif">They're only numbers. Numbers on paper. Once you understand that, it's easy to make them behave.</em></p> <p><br></p> <p><span class="ql-font-serif">Every time we deal with an enemy, we create two more.</span></p> <p><br></p> <p><span class="ql-font-serif">So the king has decreed. The small council consents.</span></p> <p><br></p> <p><span class="ql-font-serif">Chaos not is a pit, chaos is a ladder.</span></p> <p><br></p> <p><span class="ql-font-serif">A chain needs all sorts of metals, and a land needs all sorts of people.</span></p> <p><br></p> <p><span class="ql-font-serif">When the snows fall and the white winds blow, the lone wolf dies, but the pack survives.</p>

    这样的一串html,但是我在另一个页面中,引入quill的三个css之后,显示的跟在编辑器中的样子差别很大。大概结构是

      <link href="http://cdn.quilljs.com/1.3.4/quill.snow.css" rel="stylesheet">
      <link href="http://cdn.quilljs.com/1.3.4/quill.bubble.css" rel="stylesheet">
      <link href="http://cdn.quilljs.com/1.3.4/quill.core.css" rel="stylesheet">
    
      <div style='height:500px;width:700px;'>
        <div class='quill-editor'>
          <div class="ql-container">
            <div class='ql-editor'>
            ...//在这里放得到的html

    结构也是模仿编辑器中的,可是显示的还是很不一样。

    怎么才能让得到的这串html显示的跟在编辑器中的一样呢?

    1
    打赏
    收藏
    点击回答
    您的回答被采纳后将获得:提问者悬赏的 10 元积分
        全部回答
    • 0
    更多回答
    扫一扫访问手机版
    • 回到顶部
    • 回到顶部