我正在尝试使用原型插入将元素添加到现有的 html 内容中。下面是我正在处理的 html
<table id="productGrid_table" class="data" cellspacing="0">
<thead>
<tr class="filter">
<th>
<div class="range">
</div>
</th>
</tr>
</thead>
在这里,我想在 <tr class="filter"> 中添加另一个 <th>,我正在尝试使用下面的原型代码来实现这一点
$('filter').insert("<th><div class='field-100'></div></th>");
请提供一些建议我在这里做错了什么???