當粘貼到cititor中時,編輯器會從源代碼中提取所有html。我最終編輯了jquery.cleditor.js,並在$ doc.click(hidePopups)函數中添加了一個綁定函數。我使用setTimeouts來允許文本填充輸入和updateTextArea函數來完成。
.bind("paste", function() {
setTimeout(function() {
refreshButtons(editor);
updateTextArea(editor, true);
//remove any and all html from the paste action
setTimeout(function() {
//clean up the html with removeHtml function
$(editor.doc.body).html(removeHtml($(editor.doc.body).html()));
//change the input value with new clean string
$("#" + editor.$area[0].id).val($(editor.doc.body).html());
}, 100);
}, 100);
})
我使用下面的removeHtml函數從粘貼的內容中刪除所有的HTML。
//remove html altogether
function removeHtml(str) {
var regex = /(<([^>]+)>)/ig;
var result = str.replace(regex, "");
return result;
}
此解決方案現已投入生產。