Neueste Web-Entwicklung Tutorials
 

Script type Property

<Script Object

Beispiel

Holen Sie den MIME-Typ eines Skripts:

var x = document.getElementById("myScript").type

Das Ergebnis von x wird sein:

text/javascript
Versuch es selber "

Definition und Verwendung

Die Typ - Eigenschaft legt oder gibt den Wert des type - Attribut eines Skripts.

Der type - Attribut gibt den MIME - Typ eines Skripts.

Das type - Attribut gibt den Inhalt zwischen dem <script> und </script> Tags.

Der MIME-Typ besteht aus zwei Teilen: einem Medientyp und einen Subtyp. Für JavaScript ist der MIME - Typ "text/javascript" .

Hinweis: In HTML5, der type ist Attribut nicht mehr erforderlich. Der Standardwert ist "text/javascript" .


Browser-Unterstützung

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Die Eigenschaft type wird in allen gängigen Browsern unterstützt.


Syntax

Gibt die Eigenschaft type:

scriptObject .type

Stellen Sie die Eigenschaft type:

scriptObject .type= Eigenschaftswerte
Wert Beschreibung
MIME_type Gibt den MIME-Typ des Skripts.

Einige gemeinsame Werte:
  • text / javascript (this is default)
  • text / ECMAScript
  • application / ECMAScript
  • application / javascript

Schauen Sie sich IANA MIME - Typen für eine vollständige Liste von Standard - MIME - Typ.

Technische Details

Rückgabewert: Ein String, die den MIME-Typ des Skripts

Verwandte Seiten

HTML - Referenz: HTML <script> type - Attribut


<Script Object