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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用 javascript 將 PHP 變量復(fù)制到剪貼板

使用 javascript 將 PHP 變量復(fù)制到剪貼板

PHP
POPMUISE 2024-01-19 10:00:05
我正在嘗試foreach使用 . 將使用循環(huán)生成的值復(fù)制到剪貼板JS。無論單擊哪一行,都只會復(fù)制第一行。以下是生成要復(fù)制的值的代碼:foreach($results_array as $value) {    /*Some PHP code*/     <input class="col-sm-10" title="Copy Link" type="text" id="copy_this" value='<?php echo  $user_folder."/".$value; ?>' onclick="copyTo()"/>}我的JS函數(shù):function copyTo() {  /* Get the text field */  var copyText = document.getElementById("copy_this");                                  /* Copy the text inside the text field */  document.execCommand("copy");}
查看完整描述

1 回答

?
qq_笑_17

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

ID 的全部目的是唯一地標(biāo)識一個元素。另外,這不是execCommand()工作原理(您的代碼怎么可能知道您想要復(fù)制的文本?)。


擺脫 ID(你根本不需要),你可以這樣做:


function copyTo(input) {

  input.select();

  document.execCommand("copy");

}

<input type="text" value="First" onclick="copyTo(this)">

<input type="text" value="Second" onclick="copyTo(this)">

<input type="text" value="Third" onclick="copyTo(this)">


查看完整回答
反對 回復(fù) 2024-01-19
  • 1 回答
  • 0 關(guān)注
  • 159 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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