在做项目时有一个需求,是需要复制内容到剪切板,因为有众多浏览器,所以要兼容性很重要。
1、最简单的copy,只能在IE下使用
使用clipboardData方法
<script type="text/javascript"> function copy(){ window.clipboardData.setData("text",document.getElementById("name").value); alert("The text is on the clipboard, try to paste it!"); } </script>
2、跨浏览器的,但是Firefox无法复制
<head> <script type="text/javascript"> function CopyToClipboard () { var input = document.getElementById ("toClipboard"); var textToClipboard = input.value; var success = true; if (window.clipboardData) { // Internet Explorer window.clipboardData.setData ("Text", textToClipboard); } else { // create a temporary element for the execCommand method var forExecElement = CreateElementForExecCommand (textToClipboard); /* Select the contents of the element (the execCommand for 'copy' method works on the selection) */ SelectContent (forExecElement); var supported = true; // UniversalXPConnect privilege is required for clipboard access in Firefox try { if (window.netscape && netscape.security) { netscape.security.PrivilegeManager.enablePrivilege ("UniversalXPConnect"); } // Copy the selected content to the clipboard // Works in Firefox and in Safari before version 5 success = document.execCommand ("copy", false, null); } catch (e) { success = false; } // remove the temporary element document.body.removeChild (forExecElement); } if (success) { alert ("The text is on the clipboard, try to paste it!"); } else { alert ("Your browser doesn't allow clipboard access!"); } } function CreateElementForExecCommand (textToClipboard) { var forExecElement = document.createElement ("div"); // place outside the visible area forExecElement.style.position = "absolute"; forExecElement.style.left = "-10000px"; forExecElement.style.top = "-10000px"; // write the necessary text into the element and append to the document forExecElement.textContent = textToClipboard; document.body.appendChild (forExecElement); // the contentEditable mode is necessary for the execCommand method in Firefox forExecElement.contentEditable = true; return forExecElement; } function SelectContent (element) { // first create a range var rangeToSelect = document.createRange (); rangeToSelect.selectNodeContents (element); // select the contents var selection = window.getSelection (); selection.removeAllRanges (); selection.addRange (rangeToSelect); } </script> </head> <body> <input id="toClipboard" value="text to clipboard"/> <button onclick='CopyToClipboard ()'>Copy text to clipboard</button> </body>
测试后,Firefox访问失败
3、万能的flash
不要重复造轮子了,有一个使用广泛的类库ZeroClipboard
Zero Clipboard 的实现原理
Zero Clipboard 利用 Flash 进行复制,之前有 Clipboard Copy 解决方案,其利用的是一个隐藏的 Flash。但最新的 Flash Player 10 只允许在 Flash 上进行操作才能启动剪贴板。所以 Zero Clipboard 对此进行了改进,用了一个透明的 Flash ,让其漂浮在按钮之上,这样其实点击的不是按钮而是 Flash ,也就可以使用 Flash 的复制功能了。
创建一个透明的flash
将这个flash浮在按钮上层
确定要复制的文本是什么
监听这个透明flash的鼠标点击事件
该flash被点击之后,完成剪切板处理
对于这几件事,ZeroClipboard分别提供了不同的api,来完成整个需求
如何使用 Zero Clipboard
git clone https://github.com/chenpingzhao/easycopy.git
关于ZeroClipboard.js
var ZeroClipboard = { version: "1.0.7", clients: {}, moviePath: "zeroclipboard.swf", nextId: 1, $: function(A) { if (typeof(A) == "string") { A = document.getElementById(A) } if (!A.addClass) { A.hide = function() { this.style.display = "none" }; A.show = function() { this.style.display = "" }; A.addClass = function(B) { this.removeClass(B); this.className += " " + B }; A.removeClass = function(D) { var E = this.className.split(/\s+/); var B = -1; for (var C = 0; C < E.length; C++) { if (E[C] == D) { B = C; C = E.length } } if (B > -1) { E.splice(B, 1); this.className = E.join(" ") } return this }; A.hasClass = function(B) { return !!this.className.match(new RegExp("\\s*" + B + "\\s*")) } } return A }, setMoviePath: function(A) { this.moviePath = A }, dispatch: function(D, B, C) { var A = this.clients[D]; if (A) { A.receiveEvent(B, C) } }, register: function(B, A) { this.clients[B] = A }, getDOMObjectPosition: function(C, A) { var B = { left: 0, top: 0, width: C.width "ZeroClipboardMovie_" + this.id; ZeroClipboard.register(this.id, this); if (A) { this.glue(A) } } }; ZeroClipboard.Client.prototype = { id: 0, ready: false, movie: null, clipText: "", handCursorEnabled: true, cssEffects: true, handlers: null, //我们可以通过下面这个api,将flash和按钮重叠,且浮在按钮之上 glue: function(D, B, E) { this.domElement = ZeroClipboard.$(D); var F = 99; if (this.domElement.style.zIndex) { F = parseInt(this.domElement.style.zIndex, 10) + 1 } if (typeof(B) == "string") { B = ZeroClipboard.$(B) } else { if (typeof(B) == "undefined") { B = document.getElementsByTagName("body")[0] } } var C = ZeroClipboard.getDOMObjectPosition(this.domElement, B); this.div = document.createElement("div"); var A = this.div.style; A.position = "absolute"; A.left = "" + C.left + "px"; A.top = "" + C.top + "px"; A.width = "" + C.width + "px"; A.height = "" + C.height + "px"; A.zIndex = F; if (typeof(E) == "object") { for (addedStyle in E) { A[addedStyle] = E[addedStyle] } } B.appendChild(this.div); this.div.innerHTML = this.getHTML(C.width, C.height) }, /*IE 的 Flash JavaScript 通信接口上有一个 bug 。 你必须插入一个 object 标签到一个已存在的 DOM 元素中。并且在写入 innerHTML 之前请确保该元素已经 appendChild 方法插入到 DOM 中*/ getHTML: function(D, A) { var C = ""; var B = "id=" + this.id + "&width=" + D + "&height=" + A; if (navigator.userAgent.match(/MSIE/)) { var E = location.href.match(/^https/i) "https://" : "http://"; C += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="' + E + 'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="' + D + '" height="' + A + '" id="' + this.movieId + '" align="middle"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="false" /><param name="movie" value="' + ZeroClipboard.moviePath + '" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" /><param name="flashvars" value="' + B + '"/><param name="wmode" value="transparent"/></object>' } else { C += '<embed id="' + this.movieId + '" src="/UploadFiles/2021-04-02/' + ZeroClipboard.moviePath + '">可以改成下面的 ":hover" 改成 ".hover"
copy - botton.hover { border - color: #FF6633; }我们可以调用 clip.setCSSEffects( true ); 这样 Zero Clipboard 会自动为我们处理:将类 .hover 当成伪类 :hover*/
setCSSEffects: function(A) { this.cssEffects = !! A }, /*Zero Clipboard 提供了一些事件,你可以自定义函数处理这些事件。 Zero Clipboard 事件处理函数为 addEventListener(); 例如当 Flash 完全载入后会触发一个事件 "load" clip.addEventListener( "load", function(client) { alert("Flash 加载完毕!"); });*/ receiveEvent: function(D, E) { D = D.toString().toLowerCase().replace(/^on/, ""); switch (D) { case "load": this.movie = document.getElementById(this.movieId); if (!this.movie) { var C = this; setTimeout(function() { C.receiveEvent("load", null) }, 1); return } if (!this.ready && navigator.userAgent.match(/Firefox/) && navigator.userAgent.match(/Windows/)) { var C = this; setTimeout(function() { C.receiveEvent("load", null) }, 100); this.ready = true; return } this.ready = true; this.movie.setText(this.clipText); this.movie.setHandCursor(this.handCursorEnabled); break; case "mouseover": if (this.domElement && this.cssEffects) { this.domElement.addClass("hover"); if (this.recoverActive) { this.domElement.addClass("active") } } break; case "mouseout": if (this.domElement && this.cssEffects) { this.recoverActive = false; if (this.domElement.hasClass("active")) { this.domElement.removeClass("active"); this.recoverActive = true } this.domElement.removeClass("hover") } break; case "mousedown": if (this.domElement && this.cssEffects) { this.domElement.addClass("active") } break; case "mouseup": if (this.domElement && this.cssEffects) { this.domElement.removeClass("active"); this.recoverActive = false } break } if (this.handlers[D]) { for (var B = 0, A = this.handlers[D].length; B < A; B++) { var F = this.handlers[D][B]; if (typeof(F) == "function") { F(this, E) } else { if ((typeof(F) == "object") && (F.length == 2)) { F[0][F[1]](this, E) } else { if (typeof(F) == "string") { window[F](this, E) } } } } } } };以上所述是小编给大家介绍的Javascript复制实例详解,希望对大家有所帮助。
javascript复制
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。