Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 extjs 表单中的空白文本字段中删除焦点(文本字段周围的红色边框)。默认情况下,它会专注于文本字段。
如果您的意思是重置文本字段(删除文本并清除任何验证消息等),您可以使用 reset 方法。
如果您的文本字段 id 是 myTextField 那么您应该使用:
Ext.getCmp('myTextField').reset();
希望这可以帮助。