将JQuery替换为可信的元素事件绑定

时间:2017-08-05 10:20:35

标签: javascript jquery dom contenteditable

我在我的项目中使用JQuery,它使用的唯一一行是:

$('#div').on('input', function() { ... });

我是否可以使用更轻量级的lib / polyfill,它允许在可信的div上注册输入事件?

1 个答案:

答案 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.