Jquery绑定change事件(兼容 IE、Firefox、Chrome)

$("#xxid").bind($.browser.msie? 'propertychange': 'change', function(e) {
  e.preventDefault(); // Your code here 
});

你可能感兴趣的:(Jquery绑定change事件(兼容 IE、Firefox、Chrome))