Click the button to copy the specified code

This article reprinted from: https://www.cnblogs.com/hsapphire/archive/2010/05/21/1740597.html Author: hsapphire reproduced, please indicate the statement.

Click the button to copy the specified code, search the Internet several, I feel better, write down for future reference

 

First, click on the copy text box contents of the code (1)

<Script type = "text / JavaScript">
    function jsCopy () {
        var document.getElementById E = ( "Content"); // is the object Content
        e.select (); // Select the object
        document.execCommand ( "Copy") ; // Do browser copy command

       alert("已复制好,可贴粘。");
    }
</script>
<textarea cols="60" name="content" rows="2" id="content">www.qzpcw.com</textarea>
<input type=button value="复制" οnclick="jsCopy()">

Second, click on the copy text box contents of the code (2)

<SCRIPT language=JavaScript>
<!--
function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
function JM_cc(ob){
var obj=MM_findObj(ob); if (obj) {
obj.select();js=obj.createTextRange();js.execCommand("Copy");}
}
function MM_findObj(n, d) { //v4.0
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && document.getElementById) x=document.getElementById(n); return x;
}
//-->
</SCRIPT>
<FORM action="" method=post name=form1>
<TEXTAREA cols=60 name=js_1 rows=2 wrap=VIRTUAL>www.qzpcw.com</textarea>
</form>
<INPUT name=Button οnclick="JM_cc('js_1')" type=button value=复制>

Third, click on the copy text box contents of the code (3)

<script>
function oCopy(obj){
obj.select();
js=obj.createTextRange();
js.execCommand("Copy")
}
</script>
<input οnclick="oCopy(this)" value=www.qzpcw.com>

Fourth, click on the copy of the title and address of the code

<title> www.qzpcw.com </ title>
<INPUT type = "Button" name = "the Submit" the onClick = 'CopyToClipboard ()' = value " Copy page address, passed QQ / friends on MSN">
< = Language Script "JavaScript">
   function CopyToClipboard () {
    var clipBoardContent = "";
    clipBoardContent + = document.title;
    clipBoardContent + = "";
    clipBoardContent + = this.location.href;
    window.clipboardData.setData ( "the Text", clipBoardContent);
    alert ( " copy success, please paste it into your recommended QQ / MSN to your friends");
}
</ Script>

Fifth, click Copy URL codes

<script type="text/javascript">
function copyText(obj)
{
var rng = document.body.createTextRange();
rng.moveToElementText(obj);
rng.scrollIntoView();
rng.select();
rng.execCommand("Copy");
rng.collapse(false);

alert ( " copy success, please paste it into your QQ / MSN send to your friends."); <- add the phrase as needed, dispensable -!>

}
</script>
以下是代码片段:<br>
<span id="tbid">http://www.qzpcw.com</span>
[<a href="#" οnclick="copyText(document.all.tbid)">点击复制</a>]<br>
<span id="tbid1">http://www.qzpcw.com</span>
[<a href="#" οnclick="copyText(document.all.tbid1)">点击复制</a>]<br>

Original articles published 0 · won praise 136 · views 830 000 +

Guess you like

Origin blog.csdn.net/xfxf996/article/details/103886973