JavaScript DHTML/Document/Clipboard Data — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 12:59, 26 мая 2010

"clearData()" Example

   <source lang="html4strict">
   

<html> <body> <button onclick="clipboardData.setData("Text",document.selection.createRange().text);"> Copy </button> <button onclick="myText.value = clipboardData.getData("Text");">Paste</button> <button onclick="clipboardData.clearData("Text");">Clear clipboard</button>

This is some sample text

<textarea id="myText" style="width:600; height:100"></textarea> </body> </html>


     </source>
   
  


"getData()" Example

   <source lang="html4strict">
   

<html> <body> <button onclick="clipboardData.setData("Text",document.selection.createRange().text);"> Copy </button> <button onclick="myText.value = clipboardData.getData("Text");">Paste</button> <button onclick="clipboardData.clearData("Text");">Clear clipboard</button>

This is some sample text

<textarea id="myText" style="width:600; height:100"></textarea> </body> </html>


     </source>