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.
我在页面中有一个图像按钮,可以在鼠标单击时触发,默认情况下它会在输入时触发,我也想禁用它。如何使aspx:image按钮的提交行为为假
aspx:image
尝试这个:
$(function(){ $('#<%=imgBtn.ClientID%>').keydown(function(e){ if(e.which==13) { return false; } }); });