jsp頁(yè)面:
復(fù)制代碼 代碼如下:
var clientTel = $("#clientTel").val();
var activityId = $("#activityId").val();
$.ajax({
type : "post",//發(fā)送方式
url : "/arweb/reserve/saveCode.action",// 路徑
data : "clientTel="+clientTel+"activityId="+activityId ,
success: function(text){$("#randomCode").val(text);},
error: function(text) {alert("對(duì)不起,用戶ID不存在,請(qǐng)輸入正確的用戶ID");}
});
action類:
復(fù)制代碼 代碼如下:
HttpServletResponse res = ServletActionContext.getResponse();
res.reset();
res.setContentType("text/html;charset=utf-8");
PrintWriter pw = res.getWriter();
pw.print(random);
pw.flush();
pw.close();
pw.print(random);這里的random就是action要向jsp傳的值,在jsp中,success: function(text)這里的text就是接收從action傳過來的值。
您可能感興趣的文章:- jQuery-serialize()輸出序列化form表單值的方法
- jquery獲取input表單值的代碼
- jQuery對(duì)表單元素的取值和賦值操作代碼
- jquery設(shè)置text的值示例(設(shè)置文本框 DIV 表單值)
- 如何使用Jquery獲取Form表單中被選中的radio值
- jquery獲取元素值的方法(常見的表單元素)
- Jquery 表單取值賦值的一些基本操作
- JQUERY獲取form表單值的代碼
- jQuery根據(jù)表單name獲取值的方法
- jQuery表單設(shè)置值的方法