按钮字段 = 图像 否 在客户端单击



我想要此按钮类型的确认提示。此按钮类型没有OnClientClick,我需要另一种方法。

     <asp:ButtonField ButtonType="Image" ImageUrl="Content/Images/Edit.png" CommandName="EditRow" Visible="true" CausesValidation="false" ItemStyle-CssClass="smallColumn" ControlStyle-Width="15" ControlStyle-Height="15" />

有没有办法我可以使用Jquery来拦截按钮点击;如果用户说不阻止按钮点击,则提示用户?

是的,您可以使用 jQuery 附加点击处理程序:

$("#YOUR_BTN_ID").click(function() { if(confirm('YOUR REQUEST HERE') { doSomething(); }));

相关内容

  • 没有找到相关文章

最新更新