onclick
This commit is contained in:
parent
5adb329655
commit
ba88a5b01d
@ -79,9 +79,9 @@
|
|||||||
for (var i = 0; i < codes.length; i++) {
|
for (var i = 0; i < codes.length; i++) {
|
||||||
var code = codes[i];
|
var code = codes[i];
|
||||||
code.setAttribute('title', '点击复制');
|
code.setAttribute('title', '点击复制');
|
||||||
code.addEventListener("click", function () {
|
code.onclick = function () {
|
||||||
window.clipboardData.setData("Text", this.outerText);
|
window.clipboardData.setData("Text", this.outerText);
|
||||||
});
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user