How to copy URL on button click?

后端 未结 5 576
孤城傲影
孤城傲影 2020-12-16 06:34

I am trying to copy the current page URL in the text area on button click. Somehow I have tried but is not working. http://www.w3schools.com/code/tryit.asp?filename=FAF25LWI

5条回答
  •  猫巷女王i
    2020-12-16 07:02

    No need to create new textarea. try to get existing textarea by giving some id ('url').

    Here is the working example

    function Copy() {
      var Url = document.getElementById("url");
      Url.innerHTML = window.location.href;
      console.log(Url.innerHTML)
      Url.select();
      document.execCommand("copy");
    }

    Paste:

提交回复
热议问题