Ajax异步,根据每一行表格获取当前表格行内的某一个变量例如:
<td id="user_"$id> $id就是当前用户的id值,这样你点击之后获取当前行的id标示,利用php查询当前id的具体信息就行
<tr id="del">
<td>1</td>
</td>2</td>
</tr>
如何点击删除tr:
$(function(){
$("#del")click(function(){
$(this)remove();
});
})
至于后面td *** 作不是很明白,希望楼主下次问问题之前把问题表述清楚
子表格也是一个jqgrid,你可以像 *** 作主表格一样 *** 作子表格的subGridRowExpanded: function(subgrid_id, row_id) {// we pass two parameters// subgrid_id is a id of the div tag created whitin a table data// the id of this elemenet is a combination of the "sg_" + id of the row// the row_id is the id of the row// If we wan to pass additinal parameters to the url we can use// a method getRowData(row_id) - which returns associative array in type name-value// here we can easy construct the flowingvar subgrid_table_id, pager_id;subgrid_table_id = subgrid_id+"_t";pager_id = "p_"+subgrid_table_id;$("#"+subgrid_id)html("<table id='"+subgrid_table_id+"' class='scroll'</table<div id='"+pager_id+"' class='scroll'</div");jQuery("#"+subgrid_table_id)jqGrid({url:"subgridphpq=2&id="+row_id,datatype: "xml",colNames: ['No','Item','Qty','Unit','Line Total'],colModel: [{name:"num",index:"num",width:80,key:true},{name:"item",index:"item",width:130},{name:"qty",index:"qty",width:70,align:"right"},{name:"unit",index:"unit",width:70,align:"right"},{name:"total",index:"total",width:70,align:"right",sortable:false}],rowNum:20,pager: pager_id,sortname: 'num',sortorder: "asc",然后子表格的 *** 作就是jQuery("#"+subgrid_table_id)jqGrid('getGridParam','selarrrow');
这个问题困了我一天, 最后说说解决方案吧。 我是要获取到table里所有数据并导出至excel,因为分页是在客户端做的,前端已经获取到所有的数据了。 那么最终解决方案就是:
在ajax返回data并动态充填table后,先把此时的table对象赋值给一个全局变量tableObj,然后再手动调用函数做分页处理。 再想获取数据的话直接去tableObj取就可以了。希望本答案能帮助大家
可以使用parent,parents,find等函数获取当前行的所有数据。
先用parent或parents找到当前行的行元素,然后在当前行循环查找列元素。最后,把找到的元素值放入数组就可以了。
getSelectionsgetSelections
用getSelections方法取得所有已选择的数据
中文API
>
它继承自datagrid,看datagrid的方法就行
以上就是关于利用jQuery读取某一行的信息,并修改。全部的内容,包括:利用jQuery读取某一行的信息,并修改。、jquery 怎么删除当前点击的tr 我点击 td里面的数据,怎么获取当前点击的td上一个tr哪个一行、jqgrid subGridRowExpanded出来的子表格如何获取选中的行等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)