jquery中的全选并删除,我刚刚接触才半年,很多不懂,页面时freeMark

jquery中的全选并删除原先做页面给个id跟name,用下JS。。现在这个不能这么用
<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>
</table>
这就能传过来值,我刚刚接触才半年,很多不懂,求帮写个全选删除
哪位大哥帮个忙啊,,,带我超神带我飞
最新回答
指名的幸福

2025-03-31 00:04:51

删除按钮点击时执行下面代码,把选择的所有checkbox的值连接一起
$("input:checkbox").each(function(){
if (true ==
$(this).attr("checked")) {
ids += $(this).attr('value')+',';
}
});