下面有更多 "亲自试一试" 示例。
onselect 事件在元素中选择某些文本后发生。
onselect 事件主要用在 <input type="text"> 或 <textarea> 元素上。
Event | |||||
---|---|---|---|---|---|
onselect | Yes | Yes | Yes | Yes | Yes |
气泡: | 不 |
---|---|
可取消: | 不 |
事件类型: | 用户界面事件如果从用户界面生成,事件否则 |
HTML 标签: | <输入类型="file">、<输入类型="password">、<输入类型="text"> 和 <文本区域> |
DOM 版本: | 2 级活动 |
使用 HTML DOM 输入文本对象的 select() 方法选择文本字段的某些内容。发生这种情况时,将触发 onselect 事件,这将触发警报功能。
// Select the contents of a text field
function mySelectFunction() {
document.getElementById("myText").select();
}
// Alert some text when the text in the text field has been selected
function myAlertFunction() {
alert("You selected some text!");
}
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!