Skip to content

Commit

Permalink
Update news.html
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-world-1989 committed May 7, 2024
1 parent cf0054e commit d48d552
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion public/temp/news.html
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,8 @@
</div>
<div class="min-w-0 flex-1">
<p class="text-lg font-bold text-gray-900">
<a href="" class="">${item.name}</a>
<a href="/news-page?year=${year}&month=${month}&day=${day}&sourceId=${item.sourceId}&newsId=${item.id}" id="${item.id}" class="">${item.name} </a>
<button onclick="copyTweet('${item.id}')" class="text-normal text-indigo-500">复制分享链接</button>
</p>
<p class="text-sm text-gray-500">
<a href="#" class="">${item.createdDate}发布</a>
Expand Down Expand Up @@ -342,5 +343,32 @@ <h1 class="font-bold text-lg">${item.title}</h1>

fetchTweet();
</script>

<script>
function copyTweet(elementId) {
// Get the text field
const linkElement = document.getElementById(elementId);

// Create a temporary input element to hold the link text
var tempInput = document.createElement('input');
tempInput.value = linkElement.href;
document.body.appendChild(tempInput);

tempInput.select();
tempInput.setSelectionRange(0, 99999);

try {
// Now that we've selected the text, execute the copy command
var successful = document.execCommand('copy');
var msg = successful ? 'successful' : 'unsuccessful';
console.log('Copy text command was ' + msg);
} catch (err) {
console.log('Oops, unable to copy', err);
}

// Remove the selections - NOTE: Might not be necessary in some cases
document.body.removeChild(tempInput);
}
</script>
</body>
</html>

0 comments on commit d48d552

Please sign in to comment.