监听input text中内容发生变化时触发事件

依赖jquery类库

$(function(){

  if($.browser.msie){
     document.getElementById('start_time').attachEvent("onpropertychange",inputChange);
  }else{
     document.getElementById('start_time').addEventListener("input",inputChange,false);
 }

});


/**需要实际进行的操作**/

function inputChange(){

 alert(1);

}



你可能感兴趣的:(监听input text中内容发生变化时触发事件)