我有以下调用 WebMethod 的函数(Jquery)
$(function () {
$('.view-details').click(function (e) {
e.preventDefault();
$('#ticket-id').text("Ticket id: " + $(this).closest('tr').children().eq(1).html());
$.ajax({
type: "POST",
url: "Default.aspx/PopulatePopUp",
cache: false,
data: "{'arg':'" +$(this).closest('tr').children().eq(1).html()+"'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg)
{
alert(msg.d);
}
});
WebMethod 调用数据库,并使用 SqlDataReader 获取字符串。基本上,我现在需要根据返回的值在弹出窗口中填充一个文本框。但是,警报显示未定义。