我想使用jQuery.get()
向asp.net页面发出请求。
Url格式应该如何,以及如何获取我随数据发送的参数?
我试过这样:
$.ajax({
type: "POST",
url: "sendEmail.php",
data: "{name:'" + name + "', message:'" + msg + "', mailTo :'" + to + "' }",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function () {
$('#email_form').html("<div id='message'></div>");
$('#message').append("<p>We will be in touch soon.</p>")
.hide()
.fadeIn(1500, function () {
$('#message').append("<img id='checkmark' src='images/check.png' />");
});
});
});
但我想在asp.net中打电话。
答案 0 :(得分:2)
如果您想使用get
方法,请尝试此操作。
$.get( "AspxPage.aspx", {
name: name,
message: msg,
mailTo : to
},
function(response) {
$('#email_form').html("<div id='message'></div>");
$('#message').append("<p>We will be in touch soon.</p>")
.hide()
.fadeIn(1500, function() {
$('#message').append("<img id='checkmark' src='images/check.png' />");
}
);
答案 1 :(得分:2)
jQuery.get() - 使用HTTP GET请求从服务器加载数据
documentation - http://api.jquery.com/jQuery.get/
$.get(
// your aspx page
"yourpage.aspx",
// object literal used to populate query string
{ param1: "foo", param2: "bar" },
// capture response in callback
function(data){
alert("Results: " + data);
}
);
要访问Code-Behind
使用的参数:
HttpContext.Current.Request.QueryString["param1"].ToString();
或更简洁:
Request.QueryString["param1"].ToString();
答案 2 :(得分:0)
试试这个:
var data = {name: name , message: msg , mailTo : to };
$.get("sendEmail.aspx", data, function(response)
{
$('#email_form').html("<div id='message'></div>");
$('#message').append("<p>We will be in touch soon.</p>").hide().fadeIn(1500,function()
{
$('#message').append("<img id='checkmark' src='images/check.png' />");
}
});