Anonymous
Скопируйте текст в буфер обмена с помощью JS
Сообщение
Anonymous » 24 янв 2025, 03:44
Я новичок JS, и у меня есть следующая проблема: я хочу, чтобы, как только кто -то щелкнет на значок URL внутри аккордеона, соответствующая ссылка копируется в буфер обмена. К сожалению (всегда) только первая ссылка копируется в буфер обмена, даже если один щелкает на два других значка URL, только первая ссылка копируется. Хотя в буфере обмена должна быть ссылка 2 (из поля значения), когда я нажимаю на значок URL 2 (и то же самое для номера 3, конечно). Я надеюсь, что я достаточно четко описал проблему. Большое спасибо за помощь «Снаски-код-HTML LANG-HTML PrettyPrint-Override»>
Код: Выделить всё
```
My example Website
body {
font-size: 21px;
font-family: Tahoma, Geneva, sans-serif;
max-width: 550px;
margin: 0 auto;
background-color: black;
}
input {
display: none;
}
label {
display: block;
padding: 8px 22px;
margin: 0 0 1px 0;
cursor: pointer;
background: #181818;
border: 1px solid white;
border-radius: 5px;
color: #FFF;
position: relative;
}
label:hover {
background: white;
border: 1px solid white;
color:black;
}
label::after {
content: '+';
font-size: 22px;
font-weight: bold;
position: absolute;
right: 10px;
top: 2px;
}
input:checked + label::after {
content: '-';
right: 14px;
top: 3px;
}
.content {
background: #DBEECD;
background: -webkit-linear-gradient(bottom right, #DBEECD, #EBD1CD);
background: -moz-linear-gradient(bottom right, #DBEECD, #EBD1CD);
background: linear-gradient(to top left, #DBEECD, #EBD1CD);
padding: 10px 25px 10px 25px;
border: 1px solid #A7A7A7;
margin: 0 0 1px 0;
border-radius: 1px;
}
input + label + .content {
display: none;
}
input:checked + label + .content {
display: block;
}
.whitepaper {
cursor: pointer;
text-align: center;
background-color: white;
border: 2px solid black;
border-radius: 3px;
float: left;
margin: 5px 5px 5px 0;
height: 40px;
width: 30px;
}
.blackframe {
text-align: center;
background-color: black;
cursor: pointer;
font-family: Tahoma, Geneva, sans-serif;
font-size:12px;
font-weight:bold;
margin: 12px 0 12px 0;
color: white;
width: 30px;
}
.whitepaper:hover {
cursor: pointer;
text-align: center;
background-color: black;
border: 2px solid white;
border-radius: 3px;
float: left;
margin: 5px 5px 5px 0;
height: 40px;
width: 30px;
}
/* Tooltip container */
.tooltip {
position: relative;
display: inline-block;
}
/* Tooltip text */
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: #555;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
/* Position the tooltip text */
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;
/* Fade in tooltip */
opacity: 0;
transition: opacity 0.3s;
}
/* Tooltip arrow */
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
Content 1
Copy link 1 to clipboardURL
Content 2
Copy link 2 to clipboardURL
Content 3
Copy link 3 to clipboardURL
function myFunction() {
/* Get the text field */
var copyText = document.getElementById("myInput");
/* Select the text field */
copyText.select();
copyText.setSelectionRange(0, 99999); /* For mobile devices */
/* Copy the text inside the text field */
navigator.clipboard.writeText(copyText.value);
/* Alert the copied text */
alert("Copied: " + copyText.value);
}
```
Подробнее здесь:
https://stackoverflow.com/questions/725 ... rd-with-js
1737679445
Anonymous
Я новичок JS, и у меня есть следующая проблема: я хочу, чтобы, как только кто -то щелкнет на значок URL внутри аккордеона, соответствующая ссылка копируется в буфер обмена. К сожалению (всегда) только первая ссылка копируется в буфер обмена, даже если один щелкает на два других значка URL, только первая ссылка копируется. Хотя в буфере обмена должна быть ссылка 2 (из поля значения), когда я нажимаю на значок URL 2 (и то же самое для номера 3, конечно). Я надеюсь, что я достаточно четко описал проблему. Большое спасибо за помощь «Снаски-код-HTML LANG-HTML PrettyPrint-Override»>[code]``` My example Website body { font-size: 21px; font-family: Tahoma, Geneva, sans-serif; max-width: 550px; margin: 0 auto; background-color: black; } input { display: none; } label { display: block; padding: 8px 22px; margin: 0 0 1px 0; cursor: pointer; background: #181818; border: 1px solid white; border-radius: 5px; color: #FFF; position: relative; } label:hover { background: white; border: 1px solid white; color:black; } label::after { content: '+'; font-size: 22px; font-weight: bold; position: absolute; right: 10px; top: 2px; } input:checked + label::after { content: '-'; right: 14px; top: 3px; } .content { background: #DBEECD; background: -webkit-linear-gradient(bottom right, #DBEECD, #EBD1CD); background: -moz-linear-gradient(bottom right, #DBEECD, #EBD1CD); background: linear-gradient(to top left, #DBEECD, #EBD1CD); padding: 10px 25px 10px 25px; border: 1px solid #A7A7A7; margin: 0 0 1px 0; border-radius: 1px; } input + label + .content { display: none; } input:checked + label + .content { display: block; } .whitepaper { cursor: pointer; text-align: center; background-color: white; border: 2px solid black; border-radius: 3px; float: left; margin: 5px 5px 5px 0; height: 40px; width: 30px; } .blackframe { text-align: center; background-color: black; cursor: pointer; font-family: Tahoma, Geneva, sans-serif; font-size:12px; font-weight:bold; margin: 12px 0 12px 0; color: white; width: 30px; } .whitepaper:hover { cursor: pointer; text-align: center; background-color: black; border: 2px solid white; border-radius: 3px; float: left; margin: 5px 5px 5px 0; height: 40px; width: 30px; } /* Tooltip container */ .tooltip { position: relative; display: inline-block; } /* Tooltip text */ .tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: #555; color: #fff; text-align: center; padding: 5px 0; border-radius: 6px; /* Position the tooltip text */ position: absolute; z-index: 1; bottom: 125%; left: 50%; margin-left: -60px; /* Fade in tooltip */ opacity: 0; transition: opacity 0.3s; } /* Tooltip arrow */ .tooltip .tooltiptext::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: #555 transparent transparent transparent; } /* Show the tooltip text when you mouse over the tooltip container */ .tooltip:hover .tooltiptext { visibility: visible; opacity: 1; } Content 1 Copy link 1 to clipboardURL Content 2 Copy link 2 to clipboardURL Content 3 Copy link 3 to clipboardURL function myFunction() { /* Get the text field */ var copyText = document.getElementById("myInput"); /* Select the text field */ copyText.select(); copyText.setSelectionRange(0, 99999); /* For mobile devices */ /* Copy the text inside the text field */ navigator.clipboard.writeText(copyText.value); /* Alert the copied text */ alert("Copied: " + copyText.value); } ```[/code] Подробнее здесь: [url]https://stackoverflow.com/questions/72595339/copy-text-to-clipboard-with-js[/url]