gpt4 book ai didi

javascript - Jquery表不显示

转载 作者:行者123 更新时间:2023-12-02 17:15:07 25 4
gpt4 key购买 nike

我正在尝试使用在 href 单击中按钮的 onclick 函数中工作的代码,但它没有显示。

我试图隐藏 searchTable 并显示新表,但无法弄清楚我做错了什么。

My Fiddle

  $("#searchTable").hide();

var table = $('<table />').attr({
"id": "searchTableResult",
"width": "75%",
"border": "1",
"cellpadding": "0",
"cellspacing": "0"
});

thead = $('<thead />'),
tbody = $('<tbody />'),
tr = $('<tr />'),
th = $('<th />'),
td = $('<td />');
a = $('<a />').attr({
"class": "set-url",
"href": "#"
});
thead.append( // append a new row to thead
tr.clone()
.append(th.clone().text('Name')) // populate th with labels
.append(th.clone().text('Set'))
);


});

最佳答案

不要忘记将标题附加到表格并将表格附加到 DOM

$('body').append(table.append(thead));

看起来您已经创建了一个表变量,但从未使用过它。

关于javascript - Jquery表不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24501396/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com