InputEvent.dataTransfer - Web APIs 编辑
The dataTransfer
read-only property of the InputEvent
interface returns a DataTransfer
object containing information about richtext or plaintext data being added to or removed from editible content.
Syntax
var dataTransfer = inputEvent.dataTransfer
Value
A DataTransfer
object.
Examples
In the following simple example we've set up an event listener on the input event so that when any content is pasted into the contenteditable <p>
element, its HTML source is retrieved via the InputEvent.dataTransfer.getData()
method and reported in the paragraph below the input.
Try copying and pasting some of the content provided to see the effects.
<p><span style="font-weight: bold; color: blue">Whoa, bold blue text!</span></p>
<p><span style="font-style: italic; color: red">Exciting: italic red text!</span></p>
<p>Boring normal text ;-(</p>
<hr>
<p contenteditable="true">Go on, try pasting some content into this editable paragraph and see what happens!</p>
<p class="result"></p>
var editable = document.querySelector('p[contenteditable]');
var result = document.querySelector('.result')
var dataTransferObj;
editable.addEventListener('input', (e) => {
result.textContent = e.dataTransfer.getData('text/html');
});
Specifications
Specification | Status | Comment |
---|---|---|
Input Events Level 2 The definition of 'dataTransfer' in that specification. | Working Draft | Initial definition. |
Browser Compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论