MS Word、Open Office Writer、または任意の Web サイトなどのソースからテキストをコピーして、リッチ テキスト エディターに貼り付けます。しかし、Web サイトに貼り付けた後、太字、斜体、下線以外のすべてのスタイルを削除したいと考えています。以下は私がそれを達成しようとしたサンプルコードですが、h1、h2、h3などの場合はまだそうではありません。それを達成する方法を提案してください。前もって感謝します。
tinymce.init({
selector : "#job_description",
menubar : false,
statusbar : false,
theme : "modern",
toolbar : "bold italic underline | bullist numlist",
content_css : "resources/css/richTextEditor.css",
plugins: 'paste',
paste_auto_cleanup_on_paste : true,
paste_remove_styles: true,
paste_remove_styles_if_webkit: true,
paste_strip_class_attributes: true
});
richTextEditor.css:-
.mce-item-table {
/*overflow-x:hidden!important;*/
width: auto!important;
}
.mce-content-body span,p{
font-size: 16px!important;
text-decoration: none!important;
color: #858585!important;
font-weight: 400!important;
font-family: 'Roboto', sans-serif !important;
}