我想检查大写锁定是否打开,但是使用我的代码,我只能检查大写字母,而不能检查大写字母锁。
jQuery('#password').keypress(function(e) {
var s = String.fromCharCode( e.which );
if ( s.toUpperCase() === s && s.toLowerCase() !== s && !e.shiftKey ) {
jQuery('#caps').show();
}
else {
jQuery('#caps').hide();
}
});
这是我的JS代码。
哔哔one
相关分类