选择文本框的文字并复制
Posted YZ-M
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选择文本框的文字并复制相关的知识,希望对你有一定的参考价值。
var dLabel = document.getElementById("dLabel");
dLabel.addEventListener(‘click‘, function (event) {
var pageUrl = window.location.href;
var copyTextarea = document.getElementById("pageUrlInput");
copyTextarea.value = pageUrl;
$("#copyInput").css({ "display": "" });
copyTextarea.select();
try {
var successful = document.execCommand(‘copy‘);
var msg = successful ? ‘successful‘ : ‘unsuccessful‘;
console.log(‘Copying text command was ‘ + msg);
} catch (err) {
console.log(‘Oops, unable to copy‘);
}
});
以上是关于选择文本框的文字并复制的主要内容,如果未能解决你的问题,请参考以下文章