服务器之家

服务器之家 > 正文

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

时间:2019-09-05 11:35     来源/作者:Asp.net之家

先看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="http://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 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> 


然后在Sever端这么写: 

复制代码代码如下:


/// <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对您有帮助。

标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
叠猫猫队长可以退出吗 叠猫猫队长怎么换队伍
叠猫猫队长可以退出吗 叠猫猫队长怎么换队伍 2019-06-05
逃跑吧少年怎么卡皮肤 逃跑吧少年卡永久皮肤技巧
逃跑吧少年怎么卡皮肤 逃跑吧少年卡永久皮肤技巧 2019-06-21
返回顶部