JavaScript Reference/Javascript Objects/mimeType

Материал из Web эксперт
Перейти к: навигация, поиск

"mimeType" Example

   <source lang="javascript">
   

<html> <body> <button onclick="alert(navigator.mimeTypes[0].description);">mimetype</button> <button onclick="alert(navigator.mimeTypes[0].suffixes);">suffixes</button> <button onclick="alert(navigator.mimeTypes[0].type);">type</button> </body> </html>


     </source>
   
  


"mimeType" is applied to

   <source lang="javascript">

Names noted with an asterisk (*) are JavaScript properties only. +----------------+--------------------------------------------------------------+ | Applied_To |mimeTypes* | +----------------+--------------------------------------------------------------+

     </source>
   
  


"mimeType" JavaScript Properties

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | JavaScript |description suffixes | | Properties |type | +----------------+--------------------------------------------------------------+

     </source>
   
  


"mimeType" Syntax and Note

   <source lang="javascript">

Note: Provide information about the MIME type in the navigator object"s mimeTypes array.

Syntax:

navigator.mimeTypes[index].memberName


     </source>