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());
});
}
本文共 275 字,大约阅读时间需要 1 分钟。
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());
});
}
转载于:https://my.oschina.net/u/914655/blog/467131