我在我的项目中使用JQuery,它使用的唯一一行是:
$('#div').on('input', function() { ... });
我是否可以使用更轻量级的lib / polyfill,它允许在可信的div上注册输入事件?
答案 0 :(得分:1)
In pure javascript you can do something likes that :
document
.getElementsByTagName("div")
.addEventListener('input', function() { ... }));
And add this html attribute contenteditable="true"
on your div.