gpt4 book ai didi

javascript - 如何从javascript获取clone()函数的结果?

转载 作者:行者123 更新时间:2023-11-28 13:31:43 25 4
gpt4 key购买 nike

这是我的代码:

html = "";
for (i = 0; i < id_array.length; i++){
html = html.concat($(id_array[i]).clone(true));
}
console.log(html);

id_array包含 <tr> 的 3 个 ID标签 。 html 变量的结果是 object object object,而不是 ids 中的 html 代码...为什么?如何从这个 id 获取 html 代码?这是我的html代码,它不是我写的,它是由JQgrid插件生成的。所以我拍了一张照片:

enter image description here

最佳答案

看起来您想调用outerHTML。为此,您需要 native DOM 元素,可以使用 [0]get(0) 获取它:

var html = "";
for (i = 0; i < id_array.length; i++){
html += $(id_array[i])[0].outerHTML;
}
console.log(html);

关于javascript - 如何从javascript获取clone()函数的结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24257629/

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