浏览器不呈现表元素| jsFiddle例子

时间:2012-10-05 17:43:19

标签: javascript jquery

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

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

但附表不能正确呈现。任何人都可以看看这个小提琴并告诉我为什么?

http://jsfiddle.net/6ZgRf/

2 个答案:

答案 0 :(得分: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/

答案 1 :(得分:1)

你也可以尝试这个

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