我希望不加修改地收到这些字母,但是Kendo仍然将“áéíóú”等字符编码为"áéíóú"
KendoRTE = $(".myRte").kendoEditor({
encoded: true,
paste: function(e) {
console.log(e)
},
change: function() {
console.log(this.value());
}
}).data('kendoEditor');
有任何解决此问题的想法吗?
答案 0 :(得分:1)
尝试使用此技巧:
var decoded = $('<div/>').html(this.value()).text();
console.log(decoded);
您在此处修改了示例:http://jsfiddle.net/OnaBai/E32m7/3/