2020-02-17 03:01:48 +08:00
|
|
|
/*
|
2020-08-19 12:26:45 +08:00
|
|
|
* Copy current page url to clipboard.
|
|
|
|
*/
|
2020-02-17 03:01:48 +08:00
|
|
|
|
2021-07-21 01:01:09 +08:00
|
|
|
function copyLink(url, msg) {
|
2020-08-19 12:26:45 +08:00
|
|
|
if (!url || 0 === url.length) {
|
2020-09-17 19:20:50 +08:00
|
|
|
url = window.location.href;
|
2020-08-19 12:26:45 +08:00
|
|
|
}
|
2021-01-23 15:07:18 +08:00
|
|
|
|
|
|
|
const $temp = $("<input>");
|
2020-02-17 03:01:48 +08:00
|
|
|
$("body").append($temp);
|
|
|
|
$temp.val(url).select();
|
|
|
|
document.execCommand("copy");
|
|
|
|
$temp.remove();
|
|
|
|
|
2021-07-21 01:01:09 +08:00
|
|
|
let feedback = "Link copied successfully!";
|
|
|
|
if (msg && msg.length > 0) {
|
|
|
|
feedback = msg;
|
|
|
|
}
|
2020-08-19 12:26:45 +08:00
|
|
|
|
2021-07-21 01:01:09 +08:00
|
|
|
alert(feedback);
|
2020-09-17 19:20:50 +08:00
|
|
|
}
|