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');