这是我的jQuery代码
$("document").ready(function() {
$.getJSON("http://bluewingholidays.com/results.json", function(data) {
$("#div-my-table").text("<table>");
$.each(data, function(i, item) {
$("#div-my-table").append("<tr><td>" + item.EncoderName + "</td><td>" + item.EncoderStatus + "</td></tr>");
});
$("#div-my-table").append("</table>");
});
});
我想使用 html 表格将数据显示到网络中
<table id="div-my-table">
<tr><td></td></tr>
<tr><td></td></tr>
<tr><td></td></tr>
</table>
但什么也没发生?