作者: mytempo 時間: 2017-3-9 23:16 標題: copy 代碼
[attach]1965813[/attach]
請問如果將一段野copy 的程式或開發應該係search 什麼謝謝?
http://www.photostore.me/image/sqNs
嵌入代碼 --> 之後按一下連結就可出現copy ,之後便自動識copy段網址
作者: Jackass_TMxCK 時間: 2017-3-10 08:14
js copy to clipboard
作者: hksfho 時間: 2017-3-29 18:17
- function copyTextToClipboard(text) {
- var textArea = document.createElement("textarea");
- textArea.style.position = 'fixed';
- textArea.style.top = 0;
- textArea.style.left = 0;
- textArea.style.width = '2em';
- textArea.style.height = '2em';
- textArea.style.padding = 0;
- textArea.style.border = 'none';
- textArea.style.outline = 'none';
- textArea.style.boxShadow = 'none';
- textArea.style.background = 'transparent';
- textArea.value = text;
- document.body.appendChild(textArea);
- textArea.select();
- document.execCommand('copy');
- document.body.removeChild(textArea);
- }
- copyTextToClipboard(url);
作者: hermanho 時間: 2017-4-6 04:51
https://github.com/zenorocha/clipboard.js
