gpt4 book ai didi

javascript - 如何将 html 输出复制到剪贴板以在 gmail 签名中使用

转载 作者:行者123 更新时间:2023-11-30 06:14:45 26 4
gpt4 key购买 nike

我下面的代码复制了 html 标签,但我想复制输出粗体 wow 以粘贴到 gmail 签名中

function wow(){
const el = document.createElement('textarea');
el.value ="<h1>wow<h1>";
document.body.appendChild(el);
el.select();
document.execCommand('copy');
document.body.removeChild(el)
}
<button onclick="wow()">
Copy to clipboard
</button>

最佳答案

你应该尝试并操纵它:

  document.getElementById('markup-copy').addEventListener('click', function() {
clipboard.copy({
'text/plain': 'Markup text. Paste me into a rich text editor.',
'text/html': '<i>here</i> is some <b>rich text</b>'
}).then(
function() {
console.log('success');
},
function(err) {
console.log('failure', err);
});

});
<button id='markup-copy'>Copy to the clipboard</button>

另外,请查看此链接:clipboard-polyfill

关于javascript - 如何将 html 输出复制到剪贴板以在 gmail 签名中使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56814756/

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