我想克隆一个table
并更改其所有ID添加前缀。
在下面的代码段中,我使用tr
更改了添加前缀my_
的所有.find('tr').each(function()
元素ID。
使用jQuery,如何在克隆过程中为表的所有ID添加前缀名称?
var $newTable = $('table.copyable:first').clone();
$newTable.removeClass('copyable');
$newTable
.find('tr')
.each(function() {
$(this).attr('id', 'my_'+$(this).attr('id'));
});
$('#list-player-songs').html('');
$newTable.appendTo($('#list-player-songs'));
table.copyable {
background: antiquewhite;
}
table td {
border:1px solid;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<h3>Original table</h3>
<table class="copyable">
<tbody class="sortable">
<tr id="track251">
<td><div data-track-name="love.mp3" id="play251"></div></td>
<td id="song-url251">love</td>
</tr>
<tr id="track241">
<td><div data-track-name="hate.mp3" id="play241"></div></td>
<td id="song-url241">hate</td>
</tr>
<tr id="track233">
<td><div data-track-name="think.mp3" id="play233"></div></td>
<td id="song-url233">think</td>
</tr>
</tbody>
</table>
<h3>Copied elements</h3>
<div id="list-player-songs"></div>
<hr/>
<br/><br/><br/>
答案 0 :(得分:4)
搜索所有ID并使用attr(function)
,其本身会在内部each
$newTable
.find('[id]')
.attr('id', function(_, id){
return 'new-prefix' + id;
})
答案 1 :(得分:3)
您可以像这样搜索具有id
attr的每个元素:
$newTable
.find('[id]')
.each(function() {
$(this).attr('id', 'my_'+$(this).attr('id'));
});
这样,它将改变每个具有id设置的元素的id。
没有设置ID的元素,不会被更改。