標籤:
手機端屬於進階瀏覽器 原生js複製也是支援手機端複製的。
一、點擊複製文字框內容的代碼(1)
<script type="text/javascript">
function jsCopy(){
var e=document.getElementById("content");//對象是content
e.select(); //選擇對象
document.execCommand("Copy"); //執行瀏覽器複製命令
alert("已複製好,可貼粘。");
}
</script>
<textarea cols="60" name="content" rows="2" id="content">www.qzpcw.com</textarea>
<input type=button value="複製" onclick="jsCopy()">
二、點擊複製文字框內容的代碼(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 onclick="JM_cc(‘js_1‘)" type=button value=複製>
三、點擊複製文字框內容的代碼(3)
<script>
function oCopy(obj){
obj.select();
js=obj.createTextRange();
js.execCommand("Copy")
}
</script>
<input onclick="oCopy(this)" value=www.qzpcw.com>
四、點擊複製標題和地址的代碼
<title>www.qzpcw.com</title>
<input type="button" name="Submit" onClick=‘copyToClipBoard()‘ value="複製本頁地址,傳給QQ/MSN上的好友">
<script language="javascript">
function copyToClipBoard(){
var clipBoardContent="";
clipBoardContent+=document.title;
clipBoardContent+="";
clipBoardContent+=this.location.href;
window.clipboardData.setData("Text",clipBoardContent);
alert("複製成功,請粘貼到你的QQ/MSN上推薦給你的好友");
}
</script>
五、點擊複製網址的代碼
<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("複製成功,請粘貼到你的QQ/MSN上發送給你的好友。"); <!--這句根據需要加,可有可無-->
}
</script>
以下是代碼片段:<br>
<span id="tbid">http://www.qzpcw.com</span>
[<a href="#" onclick="copyText(document.all.tbid)">點擊複製</a>]<br>
<span id="tbid1">http://www.qzpcw.com</span>
[<a href="#" onclick="copyText(document.all.tbid1)">點擊複製</a>]<br>
前端交流群:群名稱:html5/css3/js/jq/nodejs/div 群號:339840649
手機端複製,pc端複製