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キーを押すとトリガーされます。ボタンの送信動作をaspx:imagefalseにする方法
aspx:image
これを試して:
$(function(){ $('#<%=imgBtn.ClientID%>').keydown(function(e){ if(e.which==13) { return false; } }); });