前台给框框增加一个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(){
//这里面写取值后要执行的操作
}
jQuery ajax - post() get(),ajax()方法可以和服务器交互。
具体这里有点小例子:
http://jun1986。iteye.com/blog/1399242 (。换成.)
jquery获取,然后用ajax到后台