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

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

無(wú)法在 Javascript 中將文本復(fù)制到剪貼板

無(wú)法在 Javascript 中將文本復(fù)制到剪貼板

ABOUTYOU 2023-10-30 20:59:49
我在嘗試了解如何將文本復(fù)制到剪貼板的不同方法時(shí)遇到了很多問(wèn)題。如果有人能向我解釋為什么我的代碼不起作用,我將非常感激。<!DOCTYPE HTML><html dark= "true" style="font-size: 50px;font-family: Roboto, Arial, sans-serif"><body>  <textarea id="copytext">ROGER</textarea>  <div class="button" id="adadad">    <button onclick="copyS()" id="dlld">    </button>  </div><p> </p><script type=text/javascript">function copyS{ clicked = document.getElementById("dlld");}if ("dlld" == clicked){   var am1 = document.getElementById("copytext");   document.execCommand("copy");}}</script><p> </p></body></html>
查看完整描述

4 回答

?
人到中年有點(diǎn)甜

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

好的,我對(duì)您的代碼做了一些調(diào)整,但它現(xiàn)在應(yīng)該可以工作了。


<!DOCTYPE HTML>

<html dark= "true" style="font-size: 50px;font-family: Roboto, Arial, sans-serif">

  <body>

    <textarea id="copytext">ROGER</textarea>

    <div class="button" id="adadad">

      <button onclick="copyS()" id="dlld">Copy text</button>

    </div>

    <p> </p>


    <!-- removed the single " at the end of your script tag -->

    <script type=text/javascript>

      //added () after you declared your function

      function copyS(){ 

        clicked = document.getElementById("dlld");

        //added .id to clicked. Not sure why you need to do this, but it works now

        if ("dlld" == clicked.id){

          var am1 = document.getElementById("copytext");

          //you need to select before running the .execCommand

          am1.select();

          document.execCommand("copy");

        }

      }

    </script>


    <p> </p>

  </body>

</html>


查看完整回答
反對(duì) 回復(fù) 2023-10-30
?
斯蒂芬大帝

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

看來(lái)您需要select()首先從文本區(qū)域獲取文本。嘗試將您的功能更改為:


function copyS{ 

   var clicked = document.getElementById("dlld");


   //if ("dlld" == clicked){ //Not sure you need this

      var am1 = document.getElementById("copytext");

      am1.select();

      document.execCommand("copy");

   //}

}

希望有幫助!


查看完整回答
反對(duì) 回復(fù) 2023-10-30
?
拉莫斯之舞

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

我已經(jīng)更改了您的代碼來(lái)完成這項(xiàng)工作。


var copiedText = "";

document.querySelector("button").onclick = function(e) {

  copiedText = e.target.previousElementSibling.value;

  document.execCommand("copy");

}


document.body.oncopy = function(e) {

  event.clipboardData.setData('text/plain', copiedText);

  event.preventDefault();

};

body {

  font-size: 50px;

  font-family: Roboto, Arial, sans-serif;

}

<textarea>ROGER</textarea>

<button>Copy</button>


查看完整回答
反對(duì) 回復(fù) 2023-10-30
?
猛跑小豬

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

嘗試這個(gè)


(<button id="demo" onclick="copyToClipboard(document.getElementById('demo').innerHTML)">This is what I want to copy</button>)


(<script>

function copyToClipboard(text) {

window.prompt("Copy to clipboard: Ctrl+C, Enter", text);

}

</script>)


查看完整回答
反對(duì) 回復(fù) 2023-10-30
  • 4 回答
  • 0 關(guān)注
  • 241 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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