function setdata() {
var info = [];
$("tr").each(function(trIdx, element) {
$("td.input").each(function(trId, element) {
info.push(input.text);
});
});
$.ajax({
type: "POST",
url: "pdtentry.aspx/Done",
contentType: "application/json; charset=utf-8",
data: JSON.stringify({ arr: info }),
dataType: "json",
success: function(result) {
alert('Yay! It worked!');
},
error: function(result) {
alert('Oh no :(');
}
});
return false;
}
未选中文本框中的数据。可从以下位置获取选择数据的表格视图:http://jsfiddle.net/arunpjohny/6PdQG/
2.如何在c#中检索数组中的值?