如果用户在密码字段中按Enter键,则secnario很简单, 我想提交登录信息进行处理。
如何在特定文本框中检测到该事件。
提前致谢
答案 0 :(得分:16)
在这种情况下,您无需担心keyPress事件。当用户按Enter键时,TextInput
可以方便地调度enter事件。
<mx:TextInput id="passwd" displayAsPassword="true" enter="submit()"/>
脚本:
private function submit():void
{
var pw:String = passwd.text;
//submit the login here.
}
这也适用于spark TextInput。
答案 1 :(得分:5)
keyDown =“if(event.keyCode == Keyboard.ENTER){userRequest.send();}”