1. 程式人生 > >使用tinymce編輯器從word保持原格式複製貼上的辦法

使用tinymce編輯器從word保持原格式複製貼上的辦法

tinymce官方有一個外掛叫powerpaste(官方收費),找到資源後,把他引入到plugins下,並在tinymce下的index檔案中把他引入:

initTinymce() {
        const _this = this
        window.tinymce.init({
          language: 'zh_CN',
          plugins: ['powerpaste', plugins],
          powerpaste_word_import: 'merge', // 引數可以是propmt, merge, clear
          powerpaste_html_import: 'merge', // propmt, merge, clear
          powerpaste_allow_local_images: true,//允許帶圖片
        })
   }