HTML <script> نوع السمة

❮ علامة HTML <script>

مثال

نص برمجي بسمة النوع المحددة:

<script type="application/javascript">
document.getElementById("demo").innerHTML = "Hello JavaScript!";
</script>

التعريف والاستخدام

typeتحدد السمة نوع البرنامج النصي .

تحدد السمة typeالمحتوى بين العلامات <script>و .</script>


دعم المتصفح

Attribute
type Yes Yes Yes Yes Yes

بناء الجملة

<script type="scripttype">

قيم السمات

Value Description
scripttype Specifies the type of the script.

Some common values:
  • A JavaScript MIME type like: application/javascript (default) or application/ecmascript
  • module:
  • Another MIME type. src attribute will be ignored

Look at IANA Media Types for a complete list of standard media types.


❮ علامة HTML <script>