<p>選中我就復(fù)制了![選中后直接放到粘貼板里,不信試試看]!</p>
js
document.onclick = function() {
? ? if (window.getSelection) {
? ? ? ? text = window.getSelection();
? ? } else if (document.selection) {
? ? ? ? text = document.selection.createRange();
? ? }
? ? // 放到粘貼板里,操作瀏覽器自身的API
? ? // console.log(text.toString());
? ? document.execCommand('Copy'); // 執(zhí)行瀏覽器的復(fù)制命令
}