嗨,下面的代码是从 gridview 中检索行值。
$("#<%=GridView3.ClientID%> input[id*='chkEmployee']:checked").each(function () {
var Id= $(this).closest('tr').find('.IDName').text();
var Company= $(this).closest('tr').find('.FName').text();
我想要做的是将 Id 和 Company 转换为表单并将其提交给 jquery 函数 $("#form").xxx
请帮助。