jquery easyui的全选

</table><tableid="dg"class="easyui-datagrid"width="100%"style="height:470px"url="<@ap... </table>
<table id="dg" class="easyui-datagrid" width="100%" style="height:470px"
url="<@app.url href="mgr/lottery/list.shtml"/>"
toolbar="#toolbar" rownumbers="true"
fitColumns="true" singleSelect="true" pagination="true">
<thead>
<tr>
<th data-options="field:'ck',checkbox:true" width="100%"></th>
<th field="topic" align="center" width="100%">主题</th>
<th field="item" align="center" width="100%">奖项</th>
<th field="rate" align="center" width="100%">中奖率</th>
<th field="count" align="center" width="100%">数量</th>
</tr>
</thead>

帮写个全选,,,多选跟全选删除
展开
 我来答
落木叶潇潇
推荐于2018-03-22 · TA获得超过466个赞
知道小有建树答主
回答量:220
采纳率:100%
帮助的人:117万
展开全部

参考:http://www.zi-han.net/case/easyui/datagrid&tree.html#datagrid

或者是

http://zhidao.baidu.com/link?url=rnVKnnmtt0rAWturOP1VrDHMUQm1-ayiuH7advs9PHCw96YxkH0P7Q9X-428FTU5S4FnTvBECfYG3FjkEncIZq_lKpsUsQzzIKkmCdDzLr3

其中有查看源代码,里面就有关于常见的GridView的操作,也包含全选

$('#dg').datagrid({
     title:'My DataGrid',
     conCls:'icon-save',
     width:700,
     height:350,
     frozenColumns:[
         {field:'ck',checkbox:true},//添加一个check全选
        {field:'id',title:'id',width:100,align:'center'}//唯一标识ID
         ]
         。。。。。。。
})

至于删除,其实你的每个数据都有ID等唯一标识把,通过获取选中行,在获取选中行的ID在删除
function delSelected(){
     var selected = $('#dg').datagrid('getSelected');
    if (selected){
    for(var i=0;i<selected.length;i++)
    {
    var id=selected[i].id;
    //根据ID删除数据
    }
   }
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式