我如何(使用Javascript)从页面上的contentEditable
DOM元素中获取新内容。它会像使用jQuery一样简单:
$("#content").on("keyup", ".editable", function(e){
var newText = $(this).text();
console.log("New text is: "+newText);
});
答案 0 :(得分:1)
解决方案很简单,因为我(当然)懒惰并在这里问。这是我未来的JSFiddle:http://jsfiddle.net/ysLPq/。请参阅以下代码:
$(document).ready(function(){
$(document).on("keyup", ".editable", function(){
console.log($(this).text());
});
});