1
我已經在谷歌上花了2天,但一直未能找到TinyMCE V4的工作答案。TinyMCE - CTRL-V,粘貼爲純文本(必須刪除選定的外國元素)
我在我的項目中使用了TinyMCE的最新CDN版本,我之後不僅粘貼爲純文本,而且還刪除除<p>
和<br/>
之類的小事情之外的所有內容。我在粘貼物品時帶來了問題,並帶來像<div>
這樣的行李。
當前的工作版本是基於這個答案https://stackoverflow.com/a/9050597/1917125。
<script src="//tinymce.cachefly.net/4.0/tinymce.min.js"></script>
<script>
tinymce.init({ plugins : 'paste',
paste_auto_cleanup_on_paste : true,
paste_remove_styles: true,
paste_remove_styles_if_webkit: true,
paste_strip_class_attributes: true,
selector:'input#tinymce',
height: 400,
menubar : false,
toolbar: "undo redo | bold italic |
alignleft aligncenter alignright alignjustify |
bullist numlist outdent indent "});
</script>
這適用於消除所有視覺元素,但我需要做的更好,並從CTRL-V
膏去除像<div>
元素。
在此先感謝。