我试图用一个按钮将文本复制到剪贴板,但是遇到了麻烦。它正在复制错误的内容。
基本上,我有一个名为my_fav_food
的变量。然后,我有一个名为My Fav Food
的按钮。当我单击此按钮时,它将调用函数copying_function
并将my_fav_food
变量解析为该函数。然后该功能自动将文本复制到剪贴板。
<!DOCTYPE html>
<html>
<body>
<script>
var my_fav_food = "My fav food is pizza"
</script>
<button onclick="copying_function(my_fav_food)">My Fav Food</button>
<script>
function copying_function(string) {
string.select();
document.execCommand("string");
}
</script>
</body>
</html>
答案 0 :(得分:0)
答案 1 :(得分:0)
您需要创建一个DOM元素并将其设置为字符串,然后以编程方式进行选择。由于您没有将元素附加到DOM,因此在视图中将不可见。
<!DOCTYPE html>
<html>
<body>
<script>
var my_fav_food = "My fav food is pizza";
</script>
<button onclick="copying_function(my_fav_food)">My Fav Food</button>
<script>
function copying_function(string) {
// string.select();
const el = document.createElement('textarea');
el.value = string;
document.body.appendChild(el);
el.select();
document.execCommand('copy');
console.log("The data copied successfully! press `ctrl+v` to see output");
document.body.removeChild(el);
}
</script>
</body>
</html>