(30分求助)asp.net 后台页面用C#获取jquery动态生成的文本选择框的值

2024-12-04 17:42:02
推荐回答(3个)
回答1:

前台给框框增加一个click事件:
例:$("#id").click(function(){
$.ajax({
url:"html.aspx?type='ajaxType'&text='+值+'",
type:"post",
dataType:'Data',
success:function(suc_rs){

},
error:function(er_rs){
}

})

})
后台:
public void AjaxContent((){
string ajaxType = Request["type"];
string HtmlText = text; //值

if(!string.IsNullOreMPTY(type))
{
if (!string.IsNullOrEmpty(ajaxType))
{
String result = string.Empty;
switch (ajaxType)
{
case "ajaxType":
GetTableText();
break;
default: break;
}

}
}

}
public void GetTableText(){
//这里面写取值后要执行的操作

}

回答2:

jQuery ajax - post() get(),ajax()方法可以和服务器交互。
具体这里有点小例子:
http://jun1986。iteye.com/blog/1399242 (。换成.)

回答3:

jquery获取,然后用ajax到后台