0
我使用MediaWiki API從維基上的表中獲取文本信息,因此可將其設置爲每行的數據集。我能夠讓表格顯示(使用行/列)在HTML上,但我不知道如何將數據設置爲本地數組或其他類型的數據集。
的代碼如下:JS MediaWiki API本地訪問已解析的行
$(document).ready(function(){
$.ajax({
type: "GET",
url: "http://wiki.teamliquid.net/smash/api.php?action=parse&format=json&prop=text§ion=0&pageid=4887&callback=?",
contentType: "application/json; charset=utf-8",
async: false,
dataType: "json",
success: function (data, textStatus, jqXHR) {
var markup = data.parse.text["*"];
var i = $('<tbody></tbody>').html(markup);
// remove any references
i.find('sup').remove();
i.find('img').remove(); //remove images
i.find('a').each(function() {$(this).replaceWith($(this).html()); }); //remove links
x = $('#article').html($(i).find('tr')); //find all rows
//console.log(x.parse.text.tr);
},
error: function (errorMessage) {
}
});
});