我在浏览器上有一个页面,它以表格格式显示一些项目。现在我想选择特定项目(行),然后将这些选定行的数据(列值)作为 Javascript 函数中的变量获取,以便我可以将它们用作 ASP 页面上查询字符串中的参数。
function selectedRows()
{
var selectedItems = Hesto.UI.GetSelectedItems('#ScannedLabelTable');
$.each(selectedItems, function (i, item) {
$.ajax({
url: PRINT_LABELS_QUERY_PAGE
, data: // this is where i need help on..
, dataType: 'json'
, success:alert("Labels Printed")
, error: Hesto.Ajax.ErrorHandler
});
});
FetchLabelDetails();
}