如何使用SetClipboardData这个函数

2025-03-21 22:38:17
推荐回答(1个)
回答1:

clipboardData (Proprietary Browser Object)
The clipboardData object provides an interface for interacting with Windows’ system clipboard.
Properties
None.
Methods
clearData([dataFormat]) Removes all data from the clipboard unless the string dataFormat is specified as "Text", "URL", "File", "HTML", or "Image", in which case only data of that kind is cleared. (IE5+ Windows)
getData(dataFormat) Gets data of the specified format from the clipboard and returns it as a string (of text, HTML, or a URL). (IE5+ Windows)
setData(dataFormat, data) Attempts to place the data given in string data (either text, HTML, or a URL) into the clipboard according to the data type specified in the string dataType (either Text, URL, File, HTML, or Image). Returns a Boolean indicating whether it was successful. (IE5+ Windows)
示例:
<