我正在使用以下脚本:它在Visual Studio中本地工作。但是在服务器上会抛出


 function GetCopyText(thislink) {
    var Content = thislink.parentNode.parentNode.parentNode.parentElement.parentElement.parentElement.parentElement.children[2].children[0].children[0].innerText;

    navigator.clipboard.writeText(Content).then(function () {
        // alert('Async: Copying to clipboard was successful!');
    }, function (err) {
        console.error('Async: Could not copy text: ', err);
    });
}

最佳答案

设置协议(protocol)https,然后浏览器应运行它。

10-05 21:31