如果我正在遍历表中的元素——比如“pmtos”类的隐藏字段——我如何获得对表中同一单元格内的文本字段(输入)的引用?
jQuery是:
// Loop through each hidden field, which holds the outstanding amount
$(".pmtos").each(function () {
var os = $(this).val();
//
//find text box in same cell - and populate with some value
//
//
});
感谢您提供任何指导以使其正常工作。
标记