JavaScript Reference/Javascript Properties/suffixes

Материал из Web эксперт
Версия от 11:22, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"suffixes" Example

   <source lang="javascript">
   

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


     </source>
   
  


"suffixes" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |mimeType | +----------------+--------------------------------------------------------------+

     </source>
   
  


"suffixes" Syntax and Note

   <source lang="javascript">

Note: Read-only property. Specifies the valid file extension names for the MIME type.

Syntax:

navigator.mimeTypes[index].suffixes


     </source>