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.
在 asp.net 中,我有一个文本编辑控件,当我按下回车键时,它会单击一些与文本编辑控件无关的按钮。
有没有办法禁用文本编辑控件的回车键?
onkeydown = "return (event.keyCode!=13);"如果它是 WebForms,你可以在你的 asp:TextBox 中使用类似的东西。
onkeydown = "return (event.keyCode!=13);"
完整示例:
<asp:TextBox ID="TextBox1" runat="server" onkeydown="return (event.keyCode!=13);">
这个答案来自:disabling default button or enter key in c#