我正在尝试foreach使用 . 将使用循环生成的值复制到剪贴板JS。无论单击哪一行,都只会复制第一行。
以下是生成要复制的值的代码:
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函数:
function copyTo() {
/* Get the text field */
var copyText = document.getElementById("copy_this");
/* Copy the text inside the text field */
document.execCommand("copy");
}
qq_笑_17