gpt4 book ai didi

javascript - 突出显示 HTML 表格中的所有数据

转载 作者:行者123 更新时间:2023-11-30 13:42:39 24 4
gpt4 key购买 nike

有没有办法对 HTML 表格中的所有元素进行选择突出显示?

我希望能够以表格形式显示数据,并且用户能够单击按钮来选择相关数据以复制并粘贴到他们选择的电子表格中。

最佳答案

试试这个:

function selectAll(parentNode) {
var sel;
// IE
if (document.selection) {
sel = document.body.createTextRange();
sel.moveToElementText(parentNode);
sel.select();
} else {
sel = document.createRange();
sel.setStartBefore(parentNode);
sel.setEndAfter(parentNode);
window.getSelection().addRange(sel);
}
}

selectAll(document.getElementById('myTable'));

测试一下 here .

关于javascript - 突出显示 HTML 表格中的所有数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1397082/

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