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

Manual de Referência HTML

大全 de etiquetas HTML

Propriedade "name" do HTML param

A propriedade "name" define o nome do elemento <param>, que geralmente é usada em conjunto com a propriedade "value" para especificar os parâmetros do plug-in definido pela tag <object>.

 HTML <param> tag

Exemplo Online

Defina o parâmetro "autoplay" como "true" para que o áudio comece a ser reproduzido imediatamente após a carga da página:

<!DOCTYPE html>
<html>
<head>
<title>HTML:<param> name property - Basic Tutorial Network(oldtoolbag.com)<//title>
</head>
<body>
<object data="horse.wav">
<param name="autoplay" value="true">
</object>
</body>
</html>
Test and 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 with the value attribute to specify the <object> parameters 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
nameThe name of the parameter.
 HTML <param> tag