window.clipboardData可以实现复制与粘贴的操作,它的getData 方法可以实现数据的读取,setData方法可以实现数据的设置
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<script language= "javascript" > function readTxt() { alert(window.clipboardData.getData( "text" )); } function setTxt() { var t=document.getElementById( "txt" ); t.select(); window.clipboardData.setData( 'text' ,t.createTextRange().text); } </script> <input name= "txt" value= "测试" > <input type= "button" value= "复制" onclick= "setTxt()" > <input type= "button" value= "读取" onclick= "readTxt()" > |