aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/event/returnvalue/index.html
blob: 78266987e7c978c88e465027daa938d42046d702 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
title: Event.returnValue
slug: Web/API/Event/returnValue
tags:
  - API
  - DOM
  - 事件
  - 参考
  - 属性
translation_of: Web/API/Event/returnValue
---
<div>{{APIRef("DOM Events")}}</div>

<p><span class="seoSummary"><code><strong>Event.returnValue</strong></code> 属性表示该事件的默认操作是否已被阻止。</span>默认情况下,它被设置为 <code>true</code>,即允许进行默认操作。将该属性设置为 <code>false</code> 即可阻止默认操作。</p>

<div class="note">
<p><strong>注意:</strong> While <code>returnValue</code> has been adopted into the DOM standard, it is present primarily to support existing code. You should use {{DOMxRef("Event.preventDefault", "preventDefault()")}}, and {{domxref("Event.defaultPrevented", "defaultPrevented")}} instead of this historical property.</p>
</div>

<h2 id="语法">语法</h2>

<pre class="syntaxbox"><var>event</var>.returnValue = <var>bool;</var>

var <var>bool</var> = <var>event</var>.returnValue;
</pre>

<h3 id="值"></h3>

<p>A {{domxref("Boolean")}} value which is <code>true</code> if the event has not been canceled; otherwise, if the event has been canceled or the default has been prevented, the value is <code>false</code>.</p>

<p>The value returned by <code>returnValue</code> is the opposite of the value returned by {{domxref("Event.defaultPrevented", "defaultPrevented")}}.</p>

<h2 id="使用备注">使用备注</h2>

<p><code>returnValue</code> was introduced into the DOM by Internet Explorer 6, and due to that browser's ubiquity became so commonly used that other browsers eventually implemented it as well. It has been adopted into the DOM specification, primarily to ensure that existing web content continues to function going forward.</p>

<p>New projects should generally avoid using <code>returnValue</code>, although they may if they choose to do so.</p>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">规范</th>
   <th scope="col">状态</th>
   <th scope="col">备注</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("DOM WHATWG", "#dom-event-returnvalue", "returnValue")}}</td>
   <td>{{Spec2("DOM WHATWG")}}</td>
   <td>Added for legacy compatibility.</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>



<p>{{Compat("api.Event.returnValue")}}</p>