在 <input> 元素中粘贴某些文本时调用函数:
<input type="text" onpaste="myFunction()" value="Paste something here">
亲自试一试 »
下面有更多示例
这个onpaste
当用户发生事件时粘贴一些内容成一个元素。
这个onpaste
event 主要用在 type="text" 的 <input> 元素上。
这是唯一可能的将某些内容粘贴到输入字段。
无法将内容粘贴到例如 <p> 元素中,除非该元素已设置内容可编辑至"true"(请参阅下面的"More Examples")。
Event | Occurs When |
---|---|
copy | The user copies content |
cut | The user starts cuts content |
paste | The user pastes content |
气泡: | 是的 |
---|---|
可取消: | 是的 |
事件类型: | 剪贴板事件 |
HTML 标签: | 所有 HTML 元素 |
在 <p> 元素中粘贴某些文本时调用函数。
(请注意,contenteditable 设置为 "true"):
<p contenteditable="true" onpaste="myFunction()">Try to paste something inside this paragraph.</p>
亲自试一试 »
onpaste
是 DOM Level 3 (2004) 功能。
所有现代浏览器都完全支持它:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | 11 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!