日期:2014-05-16 浏览次数:20401 次
如何让用户从word中粘贴内容过来自动清除格式,而不是说粘贴过来后然后再点迁清除格式的按钮。
editor.addListener("contentChange", function () {
editor.execCommand("removeFormat");
alert("1");
});
editor.addListener("beforePaste", function (type, data) {
data.html = data.html.replace(/<[^>]+>/g,'');
});