我想创建一个函数,我可以在其中填充从网址访问的数据表。例如" urlexample.php"
答案 0 :(得分:0)
您可以使用jquery $.getJSON()
函数从远程位置返回JSON数据。以下是使用此处虚拟数据的示例:http://jsonplaceholder.typicode.com/photos
const tableBody = $('#tblExample>tbody');
$.getJSON('http://jsonplaceholder.typicode.com/photos', function(data) {
//iterate over each json object in the json collection returned from the server
//value represents each individual object
//you can access the properties on the 'value' object using dot notation
$.each(data, function(key, value) {
//create a <tr/> object for your table
let row = $('<tr/>');
//set row values
$('<td/>', {html: value.title}).appendTo(row);
$('<td/>', {html: value.url}).appendTo(row);
row.appendTo(tableBody);
});
});
HTML:
<table id="tblExample">
<thead>
<th>Title</th><th>Url</>
</thead>
<tbody/>
</table>
您可以在此处查看一个有效的示例:http://codepen.io/anon/pen/WoZVG