为了让你的复印文本JS能够收听多个按钮,你可以采取以下步骤:
function copyText() {
var copyText = document.getElementById("myInput");
copyText.select();
document.execCommand("copy");
}
<input type="text" value="Hello World" id="myInput">
<button onclick="copyText()">Copy Text</button>
<input type="text" value="Lorem Ipsum" id="myInput2">
<button onclick="copyText()">Copy Text</button>
<input type="text" value="Sample Text" id="myInput3">
<button onclick="copyText()">Copy Text</button>
function copyText(inputId) {
var copyText = document.getElementById(inputId);
copyText.select();
document.execCommand("copy");
}
<input type="text" value="Hello World" id="myInput">
<button onclick="copyText('myInput')">Copy Text</button>
<input type="text" value="Lorem Ipsum" id="myInput2">
<button onclick="copyText('myInput2')">Copy Text</button>
<input type="text" value="Sample Text" id="myInput3">
<button onclick="copyText('myInput3')">Copy Text</button>
这样,每个按钮都可以将相应文本框中的内容复制到剪贴板。你可以根据需要添加更多的文本框和按钮。
请注意,以上的答案提供了一个基本的实现思路。具体的实现方法可能会受到你所使用的开发环境、框架或库的限制和要求的影响。
领取专属 10元无门槛券
手把手带您无忧上云