最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to copy table with link to clipboard to paste it into excel - Stack Overflow

programmeradmin1浏览0评论

I create data on a website, which is table like. I want to copy that data to excel. I do that using Tabs to go to the next cell in the row and newlines to go to the next row:

let clipboard = 'My link' + "\t" + secondCell + "\t" + thirdCell + "\n" + 
firstCellSecondRow + "\t" + secondCellSecondRow + "\t" + thirdCellSecondRow;
navigator.clipboard.writeText(clipboard);

Copying that text into an excel table works well:

Now my challenge is, that I want to add a link to text of one cell. My intuitive approach was to add the following text to the clipboard:

let clipboard = '<a href=";>My link</a>' + "\t" + secondCell + "\t" + thirdCell + "\n" + 
firstCellSecondRow + "\t" + secondCellSecondRow + "\t" + thirdCellSecondRow;
navigator.clipboard.writeText(clipboard);

But that doesn't work, it will actually display the text with the html in it:

What I want is only the text "My link" and an actual link that is clickable:

Since copying of text with links is possible in excel, I feel that it should somehow work. Can I do that with javascript?

I create data on a website, which is table like. I want to copy that data to excel. I do that using Tabs to go to the next cell in the row and newlines to go to the next row:

let clipboard = 'My link' + "\t" + secondCell + "\t" + thirdCell + "\n" + 
firstCellSecondRow + "\t" + secondCellSecondRow + "\t" + thirdCellSecondRow;
navigator.clipboard.writeText(clipboard);

Copying that text into an excel table works well:

Now my challenge is, that I want to add a link to text of one cell. My intuitive approach was to add the following text to the clipboard:

let clipboard = '<a href="https://www.my-url.">My link</a>' + "\t" + secondCell + "\t" + thirdCell + "\n" + 
firstCellSecondRow + "\t" + secondCellSecondRow + "\t" + thirdCellSecondRow;
navigator.clipboard.writeText(clipboard);

But that doesn't work, it will actually display the text with the html in it:

What I want is only the text "My link" and an actual link that is clickable:

Since copying of text with links is possible in excel, I feel that it should somehow work. Can I do that with javascript?

Share Improve this question edited May 6, 2021 at 13:53 Guerric P 31.9k6 gold badges58 silver badges106 bronze badges asked Mar 11, 2021 at 15:14 Mathias BaderMathias Bader 3,8568 gold badges41 silver badges63 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 13 +200

Here is how you achieve it in JavaScript:

let html = '<table><tr><td><a href="https://www.my-url.">My link</a></td><td>secondCell</td></tr><tr><td>firstCellSecondRow</td><td>secondCellSecondRow</td></tr></table>';

const blob = new Blob([html], { type: "text/html" });

navigator.clipboard.write([new ClipboardItem({ [blob.type]: blob })]);

I didn't write it as a snippet in the answer because StackOverflow has security limitations that disallows the clipboard in snippets.

If you try it in your console, this error may occur:

Uncaught (in promise) DOMException: Document is not focused.

Here is a console-testable version of the code, it implies that you click on the page during the 3s timeout:

let html = '<table><tr><td><a href="https://www.my-url.">My link</a></td><td>secondCell</td></tr><tr><td>firstCellSecondRow</td><td>secondCellSecondRow</td></tr></table>';

const blob = new Blob([html], { type: "text/html" });

setTimeout(() => navigator.clipboard.write([new ClipboardItem({ [blob.type]: blob })]), 3000);

Result in Excel:

I found a really simple solution for your problem.

I first stored the linked text in another variable. Like this:

    let mylink = 'My link';

I then added the link to the variable as an attribute.

    mylink.link = 'https://www.my-url.';

I broke the variable into two parts, replacing the first part with our above variable. Like this:

    let clipboard = mylink + "\t" + secondCell + "\t" + thirdCell + "\n" + 
    firstCellSecondRow + "\t" + secondCellSecondRow + "\t" + thirdCellSecondRow;
    navigator.clipboard.writeText(clipboard);
发布评论

评论列表(0)

  1. 暂无评论