1

我的代码使用 James Padolsey 的“jQuery 的跨域模块”发出跨域请求以获取网页的源代码: https ://github.com/padolsey/jQuery-Plugins/tree/master/cross-domain-ajax ;

然后它选择第一个表并将其附加到现有的 div 中。

但是附加的表格没有正确呈现。谁能看看这个小提琴并告诉我为什么?

http://jsfiddle.net/6ZgRf/

4

2 回答 2

2

您正在使用 jQuery.. 所以您可以通过将其转换为 jQuery 对象来遍历它

function stripViewResponse() {
// Select table element
  var fetchedTable = $(antwort).find('table')[0]; // find first table
// append table
  $('#new').append(fetchedTable);
}

http://jsfiddle.net/6ZgRf/1/

于 2012-10-05T17:46:30.827 回答
1

你也可以试试这个

function stripViewResponse() {
// Select table element
    var fetchedTable = $(antwort).find('table').eq(0);
// append table
  $('#new').append(fetchedTable);
}
于 2012-10-05T17:49:51.670 回答