--- title: Navigator.maxTouchPoints slug: Web/API/Navigator/maxTouchPoints translation_of: Web/API/Navigator/maxTouchPoints ---
{{apiref("HTML DOM")}}
返回当前设备能够支持的最大同时触摸的点数。
 

语法

touchPoints = navigator.maxTouchPoints;

样例

if (navigator.maxTouchPoints > 1) {
  // 浏览器支持多点触控
}
Specification Status Comment
{{SpecName('Pointer Events 2','#extensions-to-the-navigator-interface', 'maxTouchPoints')}} {{Spec2('Pointer Events 2')}} Non-stable version.
{{SpecName('Pointer Events', '#extensions-to-the-navigator-interface', 'maxTouchPoints')}} {{Spec2('Pointer Events')}} Initial definition.

浏览器兼容性

{{Compat("api.Navigator.maxTouchPoints")}}