window属性:ontouchstart
ontouchstart属性
touchstart事件的全局事件处理程序。
使用此功能之前,请仔细检查浏览器兼容性表。
注意:这个属性已经不被正式标准化。它在Touch Events – Level 2 Editor's Draft规范中指定,不在Touch Events Recommendation中。这个属性没有被广泛实现。
ontouchstart属性语法
var startHandler = someElement.ontouchstart;
返回值
startHandler
someElement
元素的touchstart事件处理程序
ontouchstart属性示例
此示例显示了使用ontouchstart设置元素的touchstart事件处理程序的两种方法。
<html>
<script>
function startTouch(ev) {
// Process the event
}
function init() {
var el=document.getElementById("target1");
el.ontouchstart = startTouch;
}
</script>
<body onload="init();">
<div id="target1"> Touch me ... </div>
<div id="target2" ontouchstart="startTouch(event)"> Touch me ... </div>
</body>
</html>
规范
规范 | 状态 | 注释 |
---|---|---|
Touch Events – Level 2 | Editor's Draft | 非稳定版本 |
浏览器兼容性
我们正在将兼容性数据转换为机器可读的JSON格式。
- 电脑端
特征 | Chrome | Firefox(Gecko) | Internet Explorer | Opera | Safari(WebKit) |
---|---|---|---|---|---|
基本支持 | 支持:18.0 | ? | ? | ? | ? |
- 移动端
Feature | Android | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|---|
基本支持 | ? | 支持 | 支持 | ? | ? | ? | ? | ? |