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在我的 JSF 页面中禁用密钥。我是 JavaScript 新手。如果可以使用 JS,我该如何绑定 JS 和 Primefaces 组件。
你所有的组件都有一个ID,如果没有,创建它,JS 有必要知道他在和谁一起工作。
这是一段代码,它是jQuery:
$('#your_element_id').keypress(function(e) { if ( event.which == 13 ) { event.preventDefault(); } });
它将阻止enter执行任何操作。
enter