源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

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

  • 时间:2021-03-28 14:55 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:Asp.net下用JQuery找出哪一个元素引起PostBack
[b]先看ASPX: [/b]
[u]复制代码[/u] 代码如下:
<!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="http://img.1sucai.cn/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 id="form1" runat="server"> <div> <asp:Button ID="Button1" runat="server" Text="Button1" /> <asp:Button ID="Button2" runat="server" Text="Button2" /> <asp:Button ID="Button3" runat="server" Text="Button3" /> <asp:HiddenField ID="HiddenField1" runat="server" /> </div> </form> </body> </html>
[b]然后在Sever端这么写: [/b]
[u]复制代码[/u] 代码如下:
/// <summary> /// Handles the Load event of the Page control. /// </summary> /// <param name="sender">The source of the event.</param> /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param> /// <remarks>Author Petter Liu http://wintersun.cnblogs.com </remarks> protected void Page_Load(object sender, EventArgs e) { Response.Write(HiddenField1.Value); }
很简单的CODE. 希望这篇POST对您有帮助。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部