我有一个问题,问题更大,因为这里的某些人(How do I copy to the clipboard in JavaScript?认为它是重复的。
我有
<div class="ce">
<div class="lotB">9</div>
<div class="lotB">3</div>
<div class="lotB">28</div> == $0
</div>
我希望这些内部文本以9 3 28
的形式出现,所以我设置了一个等于9 3 28
的字符串
就是这样:
var x = document.getElementsByClassName("lotB");
var count = 0;
var text = "";
for (var i = 0; i < x.length && count<3; i++) {
var nums = x[i].textContent;
text = text + nums.toString() + " ";
count++;
}
然后text = "9 3 28"
现在我的问题是,如何将text
的值直接复制到剪贴板中,以便可以将其发布到其他地方?