Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. HTMLInputElement
  4. cancel

HTMLInputElement: cancel event

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since May 2023.

Thecancel event fires on an<input> element when the user cancels the file picker dialog via theEsc key or the cancel button and when the user re-selects the same files that were previously selected oftype="file".

This event is not cancelable but can bubble.

Syntax

Use the event name in methods likeaddEventListener(), or set an event handler property.

js
addEventListener("cancel", (event) => { })oncancel = (event) => { }

Event type

A genericEvent.

Examples

Canceling an input element

HTML

html
<label for="file">Select a file. Or don't.</label><input type="file" name="file" /><div></div>
div {  margin-bottom: 10px;}

JavaScript

js
const elem = document.getElementById("file");const result = document.getElementById("result");elem.addEventListener("cancel", () => {  result.textContent = "Canceled.";});elem.addEventListener("change", () => {  if (elem.files.length === 1) {    result.textContent = "File Selected.";  }});

Result

Open the file selector, then close the selection dialog with the escape key or the cancel button. Both of these will cause the cancel event to be fired. Also, try selecting a local file on your machine; then reopen the file selection window and reselect the same file. This too causes the cancel event to be fired.

Specifications

Specification
HTML
# event-cancel
HTML
# handler-oncancel

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2026 Movatter.jp