标签:
oninput:此方法绑定于对象时,只有对象的value值发生改变时才会触发事件,可以在非IE浏览器中使用,在IE中失效。
document.getElementById(‘#username‘).addEventListener(‘input‘, function () { // do something }, false);
document.getElementById(‘#password‘).onpropertychange = function () { // do something }
onchange, oninput和onpropertychange
标签:
原文地址:http://www.cnblogs.com/happyfreelife/p/4248409.html