如何使用我的id表更改JQuery中的th值?我希望得到我的thead的价值并在我点击按钮时更改它,但我不知道如何获得该属性。
<div class="col-md-2 col-md-offset-1">
<div class="panel panel-default">
<table id="table1" class="table">
<thead>
<th class="text-center">My header</th>
</thead>
<tbody>
<tr>
<td>Category<input type="checkbox"/></td>
</tr>
</tbody>
<tfoot>
<tr>
<td>
<button type="button" class="btn btn-danger">Choose</button>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
答案 0 :(得分:2)
您可以使用:
$("#table1 thead th").text("Different header text");
答案 1 :(得分:1)
var value = $('th', '#table1').html(); //"My header"
$('th', '#table1').html('new value'); //sets "new value"
答案 2 :(得分:1)
如何使用我的id表
更改JQuery中的th值
元素没有与它们相关的值。如果你的意思是它的内容,那么你可以使用.text()
或.html()
以及选择器:
$('#tableid tg').text(); // My header
我希望得到我的thead的值,并在点击
时更改它
您可以使用.text()
或.html()
将新内容作为参数来设置新内容
$('#tableid tg').text('New Header');