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.
我使用richFaces 3.3.3 中的标签rich:suggestionBox 进行智能研究。
但我想阻止用户使用回车键选择项目的可能性。
我不知道该怎么做。
谢谢你的帮助。
如果要阻止输入键的操作,您可能需要使用 event.keyCode == 13,13 是键盘输入键操作的键代码。
你可以像这样把它放在你的 rich:suggestionBox 的 onsubmit 属性中。
onsubmit="if (event.keyCode == 13) { return false}"
每当用户按回车时,它都不会被提交。希望这可以帮助。