0

我在使用 vbox 布局的表单面板中使用密码字段组件。在 android 中,onfocus 密码字段显示了额外的字段。我参考了下面的链接,但我不清楚。 http://www.sencha.com/forum/showthread.php?125489

请指导我如何解决这个问题。在此先感谢。

{
     xtype:'passwordfield',
     label:'Password',
     id:'ap_pswd',
     name:'ap_pswd_name',
     labelWidth:'150px',
     width:'400px',
     required:true,
     style:'margin-left:auto;margin-right:auto;',
     },
4

1 回答 1

0

这是浏览器的本机行为,因此您对此无能为力。您可以做的一件事是在滚动时隐藏浏览器的输入元素。

if (document.activeElement && ('blur' in document.activeElement) &&
                (document.activeElement.tagName == 'INPUT' || document.activeElement.tagName == 'TEXTAREA')) {
            document.activeElement.blur();
        }
于 2013-01-16T14:37:38.823 回答