Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Event.defaultPrevented

この翻訳は不完全です。英語から この記事を翻訳 してください。

Summary

イベントに対して event.preventDefault() が呼ばれているかを、 boolean で返します。

Note: getPreventDefault() は非標準かつ非推奨であるため、代わりにこの API を使うべきです。 (参照 バグ 691151).

Syntax

bool = event.defaultPrevented 

Example

 if (e.defaultPrevented) {
   /* the default was prevented */
 }

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 18 6.0 (6.0) 9.0 11.0 5.0
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? 6.0 (6.0) ? ? 5.0

Specification

ドキュメントのタグと貢献者

 このページの貢献者: fscholz, Jxck
 最終更新者: Jxck,