2
我有幾個表格行,每個表格行都附加了數據屬性。當我在每個錶行點擊我要打開模態和我要如何在TR上點擊獲取數據屬性並以引導模式顯示
表
<table class="table table-striped" id="fileInfo" data-toggle="modal" data-target="#modalInfo">
<thead>
<th>Name</th>
<th>Type</th>
<th>Date Modified</th>
</thead>
<tbody>
<tr class="file" data-name="sample.jpg">
<td>sample.jpg</td>
<td>JPG</td>
<td>12.24.2015</td>
</tr>
<tr class="file" data-name="sample2.jpg">
<td>sample2.txt</td>
<td>TXT</td>
<td>12.24.2015</td>
</tr>
</tbody>
模態特定域ID的數據屬性,TD值和顯示
jQuery的
$('#modalInfo').modal({
keyboard: true,
backdrop: "static",
show:false,
}).on('show', function(){
var getIdFromRow = $(event.target).closest('tr').data('name');
$(this).find(".filename").html(getIdFromRow);
});
感謝它的工作原理:D – StoledInk 2015-02-08 08:23:11