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.
在注册页面中,当我从键盘单击选项卡时,我想移动到下一个字段。我已经为提交实现了 ENTER 键,但是按 TAB 时我无法移动到下一个字段
将 tabIndex 设置为顺序值应该就足够了,也许 tabEnabled 也......
textfieldOne.tabIndex=1; textfieldTwo.tabIndex=2; textfieldOne.tabEnabled=true; textfieldTwo.tabEnabled=true;