我想向没有 id 或类的表头添加一个属性。它只有字段。我的代码在这里不起作用。我感谢任何帮助
$(th[field = "item_group_ID"]).attr('hidden', 'true');
还是有其他方法可以做到这一点?这是桌子
<table id="dg" title="jaiko pogi " class="easyui-datagrid" style="width:980px;height:370px;"
url="show_biochem.php"
toolbar="#toolbar" pagination="true"
rownumbers="false" fitColumns="true" singleSelect="true" height="auto";>
<thead>
<tr>
<th field="item_group_ID" width="8">ID</th>
</tr>
</thead>
</table>
解决了。我阅读了文档,结果发现有一个功能。无论如何感谢您的帮助
$('#dg').datagrid('hideColumn','item_group_ID');