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.
我想防止在 Telerik MVC dll 网格中按回车键回帖。有什么办法可以做到这一点。请建议。谢谢
你试图阻止事件冒泡是什么?我会建议这样的事情:
$(function(){ $('.t-grid').data().tGrid.element.on('keydown',function(e){ if(e.keyCode==13){ e.stopImmediatePropagation(); } }) })