aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/touch/pagex/index.html
blob: ff6743a47882735b68e51f985db096720e3049c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
title: Touch.pageX
slug: Web/API/Touch/pageX
tags:
  - touch
translation_of: Web/API/Touch/pageX
---
<p>{{ ApiRef() }}</p>
<h3 id="Summary" name="Summary">概述</h3>
<p>触点相对于HTML文档左边沿的的X坐标. 和 <code>clientX 属性不同, 这个值是相对于整个html文档的坐标, 和用户滚动位置无关. 因此当存在水平滚动的偏移时, 这个值包含了水平滚动的偏移</code>.</p>
<h3 id="Syntax" name="Syntax">语法</h3>
<pre class="eval">var <em>x</em> = <em>touchItem</em>.pageX;
</pre>
<h3 id="Return_Value" name="Return_Value">返回值</h3>
<dl>
 <dt>
  <code>x</code></dt>
 <dd>
  触点相对于HTML文档左边沿的的X坐标. <code>当存在水平滚动的偏移时, 这个值包含了水平滚动的偏移</code>.</dd>
</dl>
<h3 id="Specification" name="Specification">标准定义</h3>
<p><a class="external" href="http://www.w3.org/TR/touch-events/" title="http://www.w3.org/TR/touch-events/">Touch Events Specification</a></p>
<h3 id="相关链接">相关链接</h3>
<ul>
 <li>{{ domxref("Touch.pageY") }}</li>
 <li>{{ domxref("Touch.screenX") }}</li>
 <li>{{ domxref("Touch.clientX") }}</li>
</ul>