我是 jquery 和 asp.net 的新手。我正在使用以下编码来检索值。为什么使用 $(#textbox1)[0].value 中的 [0]?有没有其他方法来检索价值?
$.ajax({
type: "POST",
url: "Default.aspx/GetTextData",
data: "{}",
contentType: "application/json",
dataType: "json",
success: function(msg) {
$("#txtResult")[0].value = msg.d;
}
});
非常感谢