我想将字符串作为参数发送给 Ajax 调用如何连接 ajax 的 URL 字符串
I want to send the string as the parameter with the Ajax Call how to concatenate the URL string of the ajax
$.ajax({
url: "/Admin/GetUserByFirstName/" + $("#data").text(),
method: "get",
dataType: 'html',
success: function(result) {
$("#searchuserbutton").click(function() {
$("#fetchdata").html(result);
});
}
});
我想将 ajax 调用的 Url 与我想搜索的字符串连接起来,方法是在控制器
的操作中放入 ajax 调用
您似乎想将 $("#data").text()
放入 data
参数中:
$.ajax({
url: "/Admin/GetUserByFirstName/",
method: "get",
data: $("#data").text(),
dataType: 'html',
success: function(result) {
$("#searchuserbutton").click(function() {
$("#fetchdata").html(result);
});
}
});
它应该为您创建 URL 字符串
$.ajax({
url: "/Admin/GetUserByFirstName/" + $("#data").text(),
method: "get",
dataType: 'html',
success: function(result) {
$("#searchuserbutton").click(function() {
$("#fetchdata").html(result);
});
}
});
我想将 ajax 调用的 Url 与我想搜索的字符串连接起来,方法是在控制器
的操作中放入 ajax 调用您似乎想将 $("#data").text()
放入 data
参数中:
$.ajax({
url: "/Admin/GetUserByFirstName/",
method: "get",
data: $("#data").text(),
dataType: 'html',
success: function(result) {
$("#searchuserbutton").click(function() {
$("#fetchdata").html(result);
});
}
});
它应该为您创建 URL 字符串