原生js实时监听input、textarea输入

来源:互联网 发布:八度网络汪冕 编辑:程序博客网 时间:2024/05/16 18:08

监听方法

实时监听input、textarea输入,进行其他的操作。

//监听事件function inputLoad() {    var input = document.getElementById("input");    input.addElementListener("input",test,false); //绑定事件}//监听后的操作function test() {    console.log(this.id);    this.style.background="red";}//最后调用监听事件inputLoad();

OK,任务完成了。

0 0
原创粉丝点击