第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

使用 JavaScript 將多個(gè)標(biāo)簽中特定標(biāo)簽的文本復(fù)制到剪貼板

使用 JavaScript 將多個(gè)標(biāo)簽中特定標(biāo)簽的文本復(fù)制到剪貼板

當(dāng)年話下 2023-05-25 17:21:53
我想使用 javascript 將輸入復(fù)制到我的剪貼板,所以有什么辦法可以做,謝謝無需輸入字段JavaScript 和 HTMLfunction copy(input){     }<p>Text To Copy = hi <button type="button" onclick="copy('hi')">click to copy</button></p>
查看完整描述

3 回答

?
慕姐8265434

TA貢獻(xiàn)1813條經(jīng)驗(yàn) 獲得超2個(gè)贊

您可以使用navigator.clipboard.writeText將文本復(fù)制到剪貼板。


function copy(input) {

  if (navigator.clipboard) {

    navigator.clipboard.writeText(input).then(() => {

      console.log('Copied to clipboard successfully.');

    }, (err) => {

      console.log('Failed to copy the text to clipboard.', err);

    });

  } else if (window.clipboardData) {

    window.clipboardData.setData("Text", input);

  }

}

<p>Text To Copy = hi <button type="button" onclick="copy('hi')">click to copy</button></p>


查看完整回答
反對(duì) 回復(fù) 2023-05-25
?
慕姐4208626

TA貢獻(xiàn)1852條經(jīng)驗(yàn) 獲得超7個(gè)贊

function copy_text_fun() {

    //getting text from P tag

    var copyText = document.getElementById("copy_txt");  

    // creating textarea of html

    var input = document.createElement("textarea");

    //adding p tag text to textarea 

    input.value = copyText.textContent;

    document.body.appendChild(input);

    input.select();

    document.execCommand("Copy");

    // removing textarea after copy

    input.remove();

    alert(input.value);

}

<p id="copy_txt">hi</p>

<button  onclick="copy_text_fun()">Copy</button>


查看完整回答
反對(duì) 回復(fù) 2023-05-25
?
喵喔喔

TA貢獻(xiàn)1735條經(jīng)驗(yàn) 獲得超5個(gè)贊

請(qǐng)?jiān)囋囘@個(gè)。也許它會(huì)為你工作。


 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 */

      document.execCommand("copy");

    

      /* Alert the copied text */

      alert("Copied the text: " + copyText.value);

    }

 <input type="text" value="Hello World" id="myInput">

    <button onclick="myFunction()">Copy text</button>


查看完整回答
反對(duì) 回復(fù) 2023-05-25
  • 3 回答
  • 0 關(guān)注
  • 199 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)