我想向 JSP 发送不同的参数。是否可以在 jQuery 中向 JSP 发送多个参数?因为 jQuery 是客户端,而 JSP 是服务器端。
让我知道!
我想向 JSP 发送不同的参数。是否可以在 jQuery 中向 JSP 发送多个参数?因为 jQuery 是客户端,而 JSP 是服务器端。
让我知道!
您可以发出ajax请求传递参数
例如:
$.ajax({
type: "POST",
url: "userNameCheck.jsp",
data: { username: "John"}
}).done(function( msg ) {
alert( msg );
//do other processing
});
看
最简单的情况:你想用 javascript (jQuery) 打开一些页面。在这种情况下,您可以将请求中的参数发送到页面:
document.location.href = "http://yourdomain.com/yourpage.jsp?paramName=" + paramValue;
如果您需要在不重新加载页面的情况下发送数据,请使用 Jigar 所说的 ajax。
你可以这样做:
$.ajax({
type: "POST",
url: "yoursite.com",
contentType: "application/json; charset=utf-8",
data: {param1: value1 , param2: "value2", param3: "value3"},
dataType: "json",
success: Succeess,
error: Failed
});