GlobalEventHandlers.onpointerdown - Web API 接口参考 编辑
pointerdown
事件的 全局事件处理程序
语法
var downHandler = targetElement.onpointerdown;
返回值
downHandler
- pointerdown 事件触发对象的事件处理程序.
示例
当前示例展示两种方式使用 onpointerdown 去设置元素的pointerdown事件处理程序.
<html>
<script>
function downHandler(ev) {
// Process the pointerdown event
}
function init() {
var el=document.getElementById("target1");
el.onpointerdown = downHandler;
}
</script>
<body onload="init();">
<div id="target1"> Touch me ... </div>
<div id="target2" onpointerdown="downHandler(event)"> Touch me ... </div>
</body>
</html>
规范
Specification | Status | Comment |
---|---|---|
Pointer Events – Level 2 onpointerdown | Working Draft | Non-stable version |
Pointer Events onpointerdown | Recommendation | Initial definition |
浏览器支持
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 55.0 | (Yes) | (Yes) | 10 | 42 | 未实现 |
Feature | Android | Android Webview | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|---|
Basic support | 未实现 | 55.0 | (Yes) | 未实现 | 未实现 | 10 | 42 | 未实现 | 55.0 |
参阅
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论