111

if(/msie/i.test(navigator.userAgent))    //ie浏览器 

{

$("#id_password").bind("propertychange", function() { 

alert($(this).val()); 

});

else 

{//非ie浏览器,比如Firefox 

$("#id_password").bind("input", function() { 

alert($(this).val()); 

});

}


你可能感兴趣的:(111)