html怎么实现按钮复制内容,如下图

 我来答
luocongjay
2018-10-25 · TA获得超过949个赞
知道小有建树答主
回答量:1382
采纳率:33%
帮助的人:432万
展开全部

要用js实现

      var clipboard = function (window, document, navigator) {
          var textArea, copy;

          function isOS() {
              return navigator.userAgent.match(/ipad|iphone/i);
          }

          function createTextArea(text) {
              textArea = document.createElement('textArea');
              textArea.value = text;
              document.body.appendChild(textArea);
          }

          function selectText() {
              var range, selection;

              if (isOS()) {
                  range = document.createRange();
                  range.selectNodeContents(textArea);
                  selection = window.getSelection();
                  selection.removeAllRanges();
                  selection.addRange(range);
                  textArea.setSelectionRange(0, 999999);
              } else {
           游漏段       textArea.select();
              }
          }

          function copyToClipboard() {
              document.execCommand('copy');
              document.body.removeChild(textArea);
          }

          copy = function 搜唯copy(text) {
              createTextArea(text);
              selectText();
              copyToClipboard();
          };

        神誉  return {
              copy: copy
          };
      }(window, document, navigator);

用法:

clipboard.copy('222');

匿名用户
2018-10-26
展开全部
用一段代码就可以了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式