blob: e55bbfc0d2ef8cf5a5baace5019c05e563174d63 (
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
|
---
title: GlobalEventHandlers.oncancel
slug: Web/API/GlobalEventHandlers/oncancel
tags:
- API
- HTML DOM
- NeedsExample
- Property
- Reference
- 事件
- 对话框
translation_of: Web/API/GlobalEventHandlers/oncancel
---
<div>{{ApiRef("HTML DOM")}}</div>
<p>{{domxref("GlobalEventHandlers")}} 的<code><strong>oncancel</strong></code> 属性是一个{{event("Event_handlers", "event handler")}},它是用来处理发送给{{HTMLElement("dialog")}}元素的{{event("cancel")}} 事件的。</p>
<p>当用户需要离开一个<dialog>元素的时候就会触发 <code>cancel</code> 事件. 这个事件处理器会防止事件向上传递,因此任何父处理器都不会接受到该事件。</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox notranslate"><em>target</em>.oncancel = <em>functionRef</em>;
</pre>
<h3 id="参数">参数</h3>
<p><code>functionRef</code> 是一个函数名 或者 <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/function">函数表达式</a>. 这个函数接收一个 {{domxref("Event")}} 对象作为它唯一的参数.</p>
<p>每次只有一个 <code>oncancel</code> 处理器可以被赋值给一个对象. 你可能更喜欢用 {{domxref("EventTarget.addEventListener()")}} 方法, 因为它更灵活.</p>
<h2 id="规范">规范</h2>
<table class="spectable standard-table">
<tbody>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">备注</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG','webappapis.html#handler-oncancel','oncancel')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<div class="hidden">本页的兼容性表格由结构化的数据生成,如果你想贡献这些数据你可以检出<a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> 并且发送一个 pull request给我们。</div>
<p>{{Compat("api.GlobalEventHandlers.oncancel")}}</p>
<h2 id="另请参阅">另请参阅</h2>
<ul>
<li>{{event("cancel")}}事件</li>
<li>HTML {{HTMLElement("dialog")}}元素</li>
<li>相关的事件处理函数:{{domxref("GlobalEventHandlers.onclose")}}</li>
</ul>
|