window属性:onselectstart
onselectstart属性
在使用此功能之前,请仔细检查浏览器兼容性表。
该GlobalEventHandlers.onselectstart属性表示selectstart事件到达此对象时调用的事件处理程序,即当用户开始在网页上进行新的文本选择时。
onselectstart属性语法
obj .onselectstart = function ;
onselectstart属性示例
document.onselectstart = function() {
console.log("Selection started!");
};
规范
规范 | 状态 | 注释 |
---|---|---|
Selection API 该规范中的'GlobalEventHandlers.onselectstart'的定义。 | Working Draft | 初始定义 |
浏览器兼容性
我们正在将兼容性数据转换为机器可读的JSON格式。
- 电脑端
特征 | Firefox(Gecko) | Chrome | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
基本支持 | 支持:43[1] 、52[2] | 支持 | 支持 | ? | 支持:1.3 |
- 移动端
特征 | Firefox Mobile (Gecko) | Android | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
onselectionchange | 支持:43.0[1]、52.0[2] | ? | ? | ? | ? |
注释:
[1]这是在dom.select_events.enabled首选项后面实现的,处除了Nightly,其余默认为false。
[2]现已在Firefox 52发行版中完全启用。