目录
- 1、在元素上同时绑定 oninput 和onporpertychanger事件
- 2. 使用原生js添加监听事件
- 3. 使用jQuery方法绑定事件
1、在元素上同时绑定 oninput 和onporpertychanger事件
<script type="text/JavaScript">
function aa(e){alert("inputting!!");}
</script>
<input type="text" id="a" oninput="aa(event)" onporpertychange="aa(event)" />
2. 使用原生js添加监听事件
<script type="text/javascript">
$(function(){
if("\v"=="v"){
document.getElementById("a").attachEvent("onporpertychange",function(e){
console.log("inputting!!");
}
}else{
document.getElementById("a").addEventListener("onporpertychange",function(e){
console.log("inputting!!");
}
}
});
</script>
<input type="text" id="a"/>
3. 使用jQuery方法绑定事件
<script type="text/javascript">
$(function(){
$("#a").bind('input porpertychange',function(){
console.log("e");
});
});
</script>
<input type="text" id="a"/>