我的代码使用 James Padolsey 的“jQuery 的跨域模块”发出跨域请求以获取网页的源代码: https ://github.com/padolsey/jQuery-Plugins/tree/master/cross-domain-ajax ;
然后它选择第一个表并将其附加到现有的 div 中。
但是附加的表格没有正确呈现。谁能看看这个小提琴并告诉我为什么?
我的代码使用 James Padolsey 的“jQuery 的跨域模块”发出跨域请求以获取网页的源代码: https ://github.com/padolsey/jQuery-Plugins/tree/master/cross-domain-ajax ;
然后它选择第一个表并将其附加到现有的 div 中。
但是附加的表格没有正确呈现。谁能看看这个小提琴并告诉我为什么?
您正在使用 jQuery.. 所以您可以通过将其转换为 jQuery 对象来遍历它
function stripViewResponse() {
// Select table element
var fetchedTable = $(antwort).find('table')[0]; // find first table
// append table
$('#new').append(fetchedTable);
}
你也可以试试这个
function stripViewResponse() {
// Select table element
var fetchedTable = $(antwort).find('table').eq(0);
// append table
$('#new').append(fetchedTable);
}