Asp.net下用JQuery找出哪一个元素引起PostBack

在Asp.net webform中,如何找出哪一个按钮触发Button PostBack事件。

先看ASPX:

复制代码 代码如下:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Petter Liu demo</title>
<script src="https://img.jb51.net/jslib/jquery/jquery14.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("input:submit").click(function() {
$("#HiddenField1").val($(this).attr("id")
+ " 引起一个 postback");
});
});
</script>
</head>
<body>
<form runat="server">
<div>
<asp:Button runat="server" Text="Button1" />
<asp:Button runat="server" Text="Button2" />
<asp:Button runat="server" Text="Button3" />
<asp:HiddenField runat="server" />
</div>
</form>
</body>
</html>


然后在Sever端这么写:

复制代码 代码如下:


/// <summary>
/// Handles the Load event of the Page control.
/// </summary>
/// <param>The source of the event.</param>
/// <param>The <see cref="System.EventArgs"/> instance containing the event data.</param>
/// <remarks>Author Petter Liu </remarks>
protected void Page_Load(object sender, EventArgs e)
{
Response.Write(HiddenField1.Value);
}


很简单的CODE.
希望这篇POST对您有帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjjjgd.html