【发布时间】:2020-05-23 14:41:25
【问题描述】:
我有一个表格来显示我的 API 中的所有数据。我的代码是这样的:
<div class="table-responsive">
<h1>List Existing Node</h1>
<br/>
<table class="table table-bordered table-striped" id="node_table">
<tr>
<th>Node Id</th>
<th>Latitude</th>
<th>Longitude</th>
<th>Location</th>
</tr>
</table>
</div>
<script>
$(document).ready(function() {
$.getJSON("/api/node/", function(data){
var node_data = '';
$.each(data, function(key, value){
node_data += '<tr>';
node_data += '<td>'+value.node_id;
node_data += '<td>'+value.latitude;
node_data += '<td>'+value.longitude;
node_data += '<td>'+value.location;
node_data += '</tr>';
});
$('#node_table').append(node_data);
console.log(data);
});
});<script>
问题是我希望节点 ID 列中的所有单元格表都可以使用 href 链接单击。
例如,当我单击节点 ID 列中的单元格(例如:节点 1 或节点 2 或节点 n)时,页面将重定向到 https://facebook.com
我该怎么做?
【问题讨论】:
-
node_data += '<td><a href="https://facebook.com">'+value.node_id+'</a></td>'
标签: javascript html href