English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Referenzhandbuch

Vollständige Liste der HTML-Tags

HTML param name Attribute

Die Attribute 'name' definiert den Namen des Elements <param>, das normalerweise zusammen mit dem Attribut 'value' verwendet wird, um die Parameter des Plugins zu spezifizieren, das durch das Element <object> definiert wird.

 HTML <param> Tag

Online-Beispiel

Setzen Sie den Parameter "autoplay" auf "true", um die Wiedergabe des Audios sofort nach dem Laden der Seite zu starten:

<!DOCTYPE html>
<html>
<head>
<title>HTML:<param> name Attribute - Basic Tutorial Website(oldtoolbag.com)</title>
</head>
<body>
<object data="horse.wav">
<param name="autoplay" value="true">
</object>
</body>
</html>
Test See ‹/›

Browser Compatibility

IEFirefoxOperaChromeSafari

All major browsers support the name attribute. However, the file format defined in <object> is not supported by all browsers.

Definition and Usage

The name attribute specifies the name of the <param> element.

This attribute is usually used together with the value attribute to specify the <object> Parameters of the plugin specified by the tag.

The value of the name attribute can be any name supported by the specified object.

HTML 4.01 With HTML5Differences

None.

Syntax

<param name="name">

Attribute Value

ValueDescription
nameParameter Name.
 HTML <param> Tag