我有两个HTML表。我试图根据第一个表中按下的链接更改第二个表的内容。
下面是填充第一个表的代码:
$.each(tableResults, function () {
$('#table1 tbody:last-child').append('<td>' + this + '</td>');
});
下面是填充第二个表的代码:
$(document).ready(function () {
var tableName = 'databaseTable1';
$.ajax({
url: 'http://localhost/api/Dynamic?table=' + tableName,
dataType: 'Json',
success: function (tableResults) {
$.each(tableResults, function (index, value) {
if ($('#table2 th:last-child').length === 0) {
$('#table2 thead').append('<th>' + value + '</th>');
} else {
$('#table2 th:last-child').after('<th>' + value + '</th>');
}
});
}
});
});
如您所见,表是动态填充的。我需要知道如何将第一个表中的每个值转换为一个链接,该链接将变量
tableName
更改为所选的值。然后,页面应刷新并显示所选表中的数据。如果它有助于我的程序有一个
F#
后端。另一方面,有人知道我如何将
tableNames
默认值设置为table1
中的第一个值吗。任何帮助都将不胜感激。
最佳答案
您可以将tableName
s存储在触发器元素的属性中(例如a
)。然后,当用户单击此触发器时,使用tableName
从属性中获取.attr()
。
我不知道你的反应,所以在我的例子中有一个虚拟的。
(点击任意一行,查看日志中的tableName
。
var tableResults = [
{
name: 'dynamicTable1'
},
{
name: 'dynamicTable2'
}
];
$.each(tableResults, function () {
$('#table1 tbody:last-child').append('<tr><td><a data-table="' + this.name + '">' + this.name + '</a></td></tr>');
});
$(document).on('click','[data-table]', function(){
var link = $(this),
tableName = link.attr('data-table');
console.log(tableName);
// do your ajax call with tableName
// $.ajax({ ....
});
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<table id="table1">
<tbody></tbody>
</table>
<hr />
<table id="table2">
<tbody></tbody>
</table>
http://jsbin.com/jicihohama/edit?html,js,console,output
笔记:
然后页面应该刷新并显示数据
刷新是指ajax“刷新”?否则为什么需要ajax?
不能将
td
放入tbody
中,因此还需要添加一行(tr
)。关于javascript - 根据链接单击更改表内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39891739/