gpt4 book ai didi

javascript - 在附加到 div 之前将 id 添加到动态生成的表中

转载 作者:行者123 更新时间:2023-12-03 02:26:32 25 4
gpt4 key购买 nike

我正在我的 Javascript 中创建如下表:

var l_table = op.script.table_dom_start + op.script.l_table_header + l_table_rows + op.script.table_dom_end;

结果是:

<table class="table table-hover">
<tr>
<th class="capitalize">
...
</th>
</tr>
</table>

然后附加到目标div:

$(l_table).appendTo('#l-ajax-response-div');

现在,在附加之前,我想给这个类一个id并尝试了以下方法:

$(l_table).attr('id', 'l-entry-table');

l_table.id='l-entry-table';

这两个都不起作用,这是怎么回事?

变量内容:

table_dom_start: '<table class="table table-hover">',
header: specific header for that table
row: specific rows for that table
table_dom_end: '</table>',

最佳答案

尝试这样的事情:

var mytable=$(l_table);
mytable[0].id="l-entry-table";
mytable.appendTo('#l-ajax-response-div');

关于javascript - 在附加到 div 之前将 id 添加到动态生成的表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48920290/

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