js复制代码到其他地方+鼠标悬停显示小手

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>js复制代码到其他地方+鼠标悬停显示小手title> head> <body> <a style="cursor:pointer">鼠标悬停显示小手a>      <input type="text" name="url" id="url" /> <input type="button" name="anniu1" onClick='javascript:copyToClipBoard();' value="复制代码到QQ等其他地方"/> <script language="javascript"> function copyToClipBoard(){ var Url2=document.getElementById("url"); Url2.select(); // 选择对象 document.execCommand("Copy"); alert("复制成功!"); } script> body> html>

你可能感兴趣的:(Javascript)