码迷,mamicode.com
首页 > Web开发 > 详细

JS下的复制粘贴

时间:2014-06-14 16:29:02      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   tar   

IE :     

bubuko.com,布布扣
1     <input type="text" id="Settext" />
2 
3     <input type="button" onclick="copyToClipboard()" />
body内
bubuko.com,布布扣
 1         function copyToClipboard() {
 2 
 3             if (document.all) {                                              //判断IE
 4 
 5                 var text = document.all("Settext").value;
 6 
 7                 window.clipboardData.setData(‘text‘, text);
 8 
 9                 alert("复制成功!");
10             }
11 
12             else {
13 
14                 alert("您的浏览器不支持剪贴板操作,请自行复制。");
15 
16             };
17 
18         }
head内

 

JS下的复制粘贴,布布扣,bubuko.com

JS下的复制粘贴

标签:style   class   blog   code   http   tar   

原文地址:http://www.cnblogs.com/mengkai/p/3787975.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!