监听输入框的键盘事件,在移动端可以使用H5的oninput事件,但在PC端并不是所有浏览器都支持。在PC端,绑定H5的input事件,和IE的propertychange事件,即可兼容
$('#password').bind('input propertychange', function() {
// do something
});
监听输入框的键盘事件,在移动端可以使用H5的oninput事件,但在PC端并不是所有浏览器都支持。在PC端,绑定H5的input事件,和IE的propertychange事件,即可兼容
$('#password').bind('input propertychange', function() {
// do something
});