从execcommand('copy')jquery看到创建的输入时出现问题

时间:2019-03-11 16:28:16

标签: jquery copy execcommand

我正在使用IE11,并使用以下代码复制数据。

<input type="button" class="btn" id="CopyIDs" value="Copy All IDs"/>

 $(document).on('click', '#CopyIDs', function () {
        GridData = "test any data"
        var $temp = $("<input>");
        $("body").append($temp);
        $temp.val(GridData).select();
        document.execCommand("copy");
        $temp.remove();
        alert("Data Copied To Clipboard Successfully")
    });

它正常工作,但是我遇到一个问题,我可以看到创建的输入包含复制的数据,然后在一秒钟内消失。

我不想在应用程序上看到它。

0 个答案:

没有答案