javascript-如果启用了Caps Lock,则ExtJS显示消息

前端之家收集整理的这篇文章主要介绍了javascript-如果启用了Caps Lock,则ExtJS显示消息 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如果用户在输入密码时打开大写锁定,我想添加一条消息.到目前为止,这是我尝试过的.

 {
     xtype:'textfield',itemId: 'field_password_login',fieldLabel: 'Password',inputType: 'password',allowBlank: false,listeners:
     {
         keypress: function(tf,e)
         {
             if (e.getKey() != 13 && e.getKey() != 10 && e.getKey() != 127)
             {
                 if ((!e.shiftKey && (e.getKey() >= 65 && e.getKey() <= 90)) || ((e.getKey() >= 97 && e.getKey() <= 122) && e.shiftKey))
                 {
                     Ext.getCmp("app_idCAPSIndicator").setText("CAPS LOCK is ON");
                     Ext.getDom("app_idCAPSIndicator").style.color = "navy";

                 }
                 else
                 {
                     Ext.getCmp("app_idCAPSIndicator").setText("");
                 }
             }
             if (e.getKey() == 13)
             {
                 Ext.Msg.alert("Enter Pressed");
             }
         }
     }
 },{
     xtype: 'label',fieldLabel: '',labelWidth: 90,labelAlign: 'left',labelSeperator: '',id: 'app_idCAPSIndicator'
 }

但这行不通.我没有错误消息知道发生了什么.我在这里做错了什么?

最佳答案
添加enableKeyEvents:true,如果为true,则为HTML输入字段启用键事件的代理

{
     xtype:'textfield',enableKeyEvents: true,
原文链接:https://www.f2er.com/js/531137.html

猜你在找的JavaScript相关文章