Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. MimeTypeArray

MimeTypeArray

Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see thecompatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

TheMimeTypeArray interface returns an array ofMimeType instances, each of which contains information about a supported browser plugins. This object is returned by the deprecatedNavigator.mimeTypes property.

This interface was anattempt to create an unmodifiable list and only continues to be supported to not break code that's already using it. Modern APIs represent list structures using types based on JavaScriptarrays, thus making many array methods available, and at the same time imposing additional semantics on their usage (such as making their items read-only).

Instance properties

MimeTypeArray.lengthDeprecated

The number of items in the array.

Instance methods

MimeTypeArray.item()Deprecated

Returns theMimeType object with the specified index.

MimeTypeArray.namedItem()Deprecated

Returns theMimeType object with the specified name.

Example

The following example tests whether a plugin is available for the 'application/pdf' mime type and if so, logs its description.

js
const mimeTypes = navigator.mimeTypes;const pdf = mimeTypes.namedItem("application/pdf");if (pdf) {  console.log(pdf.description);}

Specifications

Specification
HTML
# mimetypearray

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp