gpt4 book ai didi

javascript - 想返回完整的 html,包括表格标签

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:19:38 27 4
gpt4 key购买 nike

这会返回表中它应该返回的所有内容。

alert($('table[width="100%"][cellspacing="0"][cellpadding="10"][border="0"]:eq(0)').html());

在这种情况下,我如何获取表格内的 HTML 以及实际的表格标签

<table width="100%" cellspacing="0" cellpadding="10" border="0">
----html----
</table>

最佳答案

参见 this thread :

添加此扩展代码:

$.fn.outer = function(val){
if(val){
$(val).insertBefore(this);
$(this).remove();
}
else{ return $("<div>").append($(this).clone()).html(); }
}

然后你可以这样做:

alert(
$('table[width="100%"][cellspacing="0"][cellpadding="10"][border="0"]:eq(0)')
.outer()
);

关于javascript - 想返回完整的 html,包括表格标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4134719/

27 4 0