JavaScript Reference/Javascript Methods/getData — различия между версиями

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

Текущая версия на 08:22, 26 мая 2010

"getData()" Example

    
<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>
<p>This is some sample text</p>
<textarea id="myText" style="width:600; height:100">
text inside the textarea
</textarea>
</body>
</html>



"getData()" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |clipboardData                   dataTransfer                  |
+----------------+--------------------------------------------------------------+



"getData()" Syntax, Parameters and Note

Note:
Retrieves the specified type of data from the clipboard.
    
Syntax:
    
event.objectName.getData(param1)
Parameters:
    param1   Required; text or URL.