我在 asp 的表单中有两个 asp 按钮。当我单击任何提交按钮时,将调用下面的函数,最终调用 callotherfunction()。
$("form").live("submit", function() {
callotherfunction();
});
我想区分点击,我想运行 callotherfunction(); 仅适用于 1 个按钮。
这是我的两个提交按钮:
<asp:Button ID="btn1" runat="server" OnClick="Button1_Click" Text="Start Search" />
<asp:Button ID="btn2" runat="server" OnClick="Button2_Click" Text="Export Data to Excel" />
我已经尝试使用代码识别按钮单击 bny:
$("input").click(function() {
alert($(this).attr('id'));
});
我没有得到任何警报。我应该如何处理这个过程。