


The copy function is often used in development, and it is relatively simple to implement under IE. But it is more difficult to achieve cross-browser. This article will introduce a cross-browser library class Zero Clipboard. It uses Flash for copying, so it can run as long as the browser has Flash installed, and is more flexible than IE's document.execCommand("Copy").
The implementation principle of Zero Clipboard
Zero Clipboard uses Flash to copy. There was a previous Clipboard Copy solution, which used a hidden Flash. But the latest Flash Player 10 only allows operations on Flash to activate the clipboard. So Zero Clipboard improved this and used a transparent Flash to float above the button. In this way, what is actually clicked is not the button but the Flash, and the copy function of Flash can be used.
How to use Zero Clipboard
First download Zero Clipboard and unzip it. Two files are required: ZeroClipboard.js and ZeroClipboard.swf. Put these two files into your project.
Download address
Zero Clipboard open source JavaScript flash copy library class
Demo address:
http://demo.jb51.net /js/ZeroClipboard/index.html
Core Functions
The first step is to import the ZeroClipboard.js file:
Set the path of the ZeroClipboard.swf file:
ZeroClipboard.setMoviePath( "ZeroClipboard.swf" );
Note: The paths of the above two files, ZeroClipboard.js and ZeroClipboard.swf, need to be replaced with the paths of the corresponding files in your project. Or it can be an absolute path.
Then use:
var clip = new ZeroClipboard.Client(); // Create a new object
clip.setHandCursor( true ); // Set the mouse to hand type
clip.setText("Haha"); / / Sets the text to be copied.
// Register a button, the parameter is id. Clicking this button will copy it.
//This button does not necessarily need to be an input button, it can also be other DOM elements.
clip.glue("copy-botton"); // The position cannot be interchanged with the previous sentence
In this way, the basic function is realized, and the set text can be copied by clicking the button. You may have noticed that the text to be copied is fixed. What if you want to change it dynamically, such as copying the content in an input box. Don’t worry, we’ll cover that below.
Other functions
Zero Clipboard also provides some other functions, some of which are very useful.
reposition() method
Because there is a Flash button floating on the button, when the page size changes, the Flash button may be misplaced and cannot be clicked. It doesn't matter, Zero Clipboard provides a reposition() method that can recalculate the position of the Flash button. We can bind it to the resize event.
bind(window, "resize", function(){
clip.reposition();
});
bind is a cross-browser event binding function.
================================================== ==========
Everyone must know this. The event binding function of IE is attachEvent; while Firefox and Safari are addEventListener; Opera supports both. Encapsulation is done below.
/************************************
* Add event binding
* @param obj: The element to which the event will be bound
* @param type: event name. Do not add "on". For example: "click" instead of "onclick".
* @param fn: event handling function
********************** *****************/
function bind( obj, type, fn ) {
if ( obj.attachEvent ) {
obj['e' type fn] = fn;
obj[type fn] = function(){obj['e ' type fn]( window.event );}
obj.attachEvent( 'on' type, obj[type fn] );
} else
obj.addEventListener( type, fn, false );
}
For example, add a page click event:
bind(document, "click", function() {
alert("Hello, World!!");
});
================================================== ==========
hide() and show() methods
These two methods can hide and show Flash buttons. The show() method calls the reposition() method.
setCSSEffects() method
When the mouse moves over or clicks on the button, pseudo-classes such as css ":hover", ":active" and other pseudo-classes may become invalid due to the obstruction of the Flash button. The setCSSEffects() method solves this problem. First we need to change the pseudo-class to a class, for example:
#copy-botton:hover{
border-color:#FF6633;
}
// Can be changed to the following ":hover" to ".hover"
#copy-botton.hover {
border-color:#FF6633;
}
We can call clip.setCSSEffects( true ); so that Zero Clipboard will automatically handle it for us: treat class.hover as a pseudo class :hover.
getHTML() method
If you want to instantiate Flash yourself without using the Zero Clipboard attachment method, then this method can help. It accepts two parameters, the width and height of the Flash. What is returned is the HTML code corresponding to Flash. For example:
var html = clip.getHTML( 150, 20 );
You can use innerHTML or document.write(); directly for output.
The following is the HTML code output under my test:
There is a bug in IE's Flash JavaScript communication interface. You must insert an object tag into an existing DOM element. And before writing innerHTML, make sure that the element has been inserted into the DOM using the appendChild method.
Zero Clipboard event handling
Zero Clipboard provides some events, and you can customize functions to handle these events. The Zero Clipboard event handling function is addEventListener(); for example, an event "load" will be triggered when Flash is completely loaded.
clip.addEventListener( "load", function(client) {
alert("Flash loaded!");
});
Zero Clipboard will pass the clip object as a parameter enter. That is "client" in the above example.
Also "load" can also be written as "onLoad", and other events can also be written like this.
Other events include:
mouseOver mouse up event
mouseOut mouse out event
mouseDown mouse down event
mouseUp mouse up event
complete Copy Success events
Among them, mouseOver event and complete event are more commonly used.
As mentioned before, if you need to dynamically change the content to be copied, the mouseOver event can come in handy. For example, if we need to dynamically copy the value in an input box with the id of test, we can reset the value when the mouse is over.
clip.addEventListener( "mouseOver", function(client) {
var test = document.getElementById("test");
client.setText( test.value ); // Reset Value to copy
});
Copy successfully:
clip.addEventListener( "complete", function(){
alert("Copy successfully!");
} );
Okay, let’s introduce it here. Try it out yourself now.

我们用户们在使用这款平台的时候应该都能够了解到上面对于一些功能的多样性,我们知道一些歌曲的歌词都写的非常的不错。有时候甚至都会多听几遍,觉得其中的含义都是非常深刻的,所以我们想要去了解其中的胜意,就想要直接的复制下来当文案来使用,不过对于要使用的话,还是要学会如何去复制歌词才可以,这些操作方面我相信大家们应该都并不模式,但是在手机上面操作确实是有点难度,所以为了能够让大家们更好的了解的话,今日小编就来为你们好好的讲解上面的一些操作体验,如果你们也喜欢的话,就和小编一起来看看吧,不要错过了。

复制的快捷键是“Ctrl+c”,与之相对应的粘贴键是“Ctrl+v”;在电脑中,使用鼠标拖拽选中文字,按住Ctrl,再点C键,即可完成复制;快捷键就是指通过某些特定的按键、按键顺序或按键组合来完成一个操作。

在PS复制图层快捷键中,我们可以知道使用PS的时候如果想要进行复制图层的操作,可以使用到快捷键【Ctrl+J】进行快速复制。这篇复制图层快捷键的介绍就能够告诉大家具体的操作方法,下面就是详细的内容,赶紧看看吧。PS复制图层快捷键答:【Ctrl+J】具体方法:1、在ps中打开图像,选中需要复制的图层。2、键盘同时按下【Ctrl+J】,即可完成对图层的复制。其他复制方式:1、打开图像后,按住图层,向下放【新建图层】图标移动。2、移动到该图标上后,松手。3、即可完成图层复制。

很多的用户们在使用电脑的时候,如果遇到一些需要复制粘贴的东西时,用鼠标复制非常麻烦,那么复制粘贴的快捷键需要如何使用呢,快来看看详细的教程吧~复制粘贴快捷键怎么用:1、复制键:Ctrl+C,选择需要复制的文字或图片,按下快捷键。2、粘贴键:Ctrl+V,在需要粘贴的位置上,直接按下快捷键就行了。

Vue是一款流行的JavaScript框架,它提供了方便的拖拽功能,让我们可以轻易地实现元素的复制和移动。下面,我们就来看一下如何在Vue中实现拖拽元素的复制和移动。一、拖拽元素的基本实现在Vue中实现拖拽元素的复制和移动,首先需要实现元素的基本拖拽功能。具体实现方法如下:在模板中添加需要拖拽的元素:<divclass="drag-elem

我们经常会用Excel处理多个表格数据,而设定好的表格经过复制粘贴后,原有的格式又恢复默认了,还得需要我们重新设置。其实是有方法可以使Excel复制表格保留原格式的,下面小编就给大家讲解下具体的方法。一、Ctrl键拖拉复制操作步骤:使用快捷键【Ctrl+A】全选表格内容后,将鼠标光标移至表格边缘直到出现移动光标。按住【Ctrl】键,随后拖动表格到所需位置即可完成移动。需要注意的是,这种方法只适用于单个工作表,无法在不同工作表之间进行移动。二、选择性粘贴步骤:按【Ctrl+A】快捷键全选中表格,按

1、剪切指的是将选定的内容从一个位置移动到另一个位置的操作。2、复制操作是在选定的内容上创建一个副本,并将这个副本保存在系统的剪贴板中,且原内容会保留在原来的位置上。3、如果用户想把内容移动到其他位置并删除原来的位置上的内容,就可以使用剪切操作。4、如果用户需要创建内容的副本,且在不影响原内容的情况下将其粘贴到其他地方,那就要使用复制操作。

在 Windows 系统中,复制的快捷键是 Ctrl+C;在苹果系统中,复制的快捷键是 Command+C;在 Linux 系统中,复制的快捷键是 Ctrl+Shift+C。了解这些快捷键可以提高用户的工作效率,方便地进行文本或文件复制操作。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
