当前位置: 首页 > 网络学院 > 网页制作基础教程 > HTML > HTML <param>标签
The param element allows you to specify the run-time settings for an object inserted into XHTML documents.
使用param元素可以让你指定XHTML文档中object运行的设置
In HTML the <param> tag has no end tag.
在HTML中<param>不需要结束标签
In XHTML the <param> tag must be properly closed.
在XHTML中的<param>标签必须合理关闭
代码 | 输出结果 |
---|---|
<object classid="clsid:F08DF954-8592-11D1-B16A-00C0F0283628" id="Slider1" width="100" height="50"> <param name="BorderStyle" value="1" /> <param name="MousePointer" value="0" /> <param name="Enabled" value="1" /> <param name="Min" value="0" /> <param name="Max" value="10" /> </object> |
DTD indicates in which DTD the attribute is allowed. S=Strict, T=Transitional, and F=Frameset.
下表中的DTD列指明了被支持的DTD属性。S=Strict(精确的),T=Transitional(传统的),F=Frameset(框架)
属性 | 值 | 描述 | DTD |
---|---|---|---|
name | unique_name | Defines a unique name for the parameter 为参数定义唯一的name | STF |
属性 | 值 | 描述 | DTD |
---|---|---|---|
type | MIME type | Specifies the internet media type for the parameter 针对参数指定网际媒体类型 | STF |
value | value | Specifies the value of the parameter 指定参数的值 | STF |
valuetype | data ref object | Specifies the MIME type of the value 指定值的MIME类型 | STF |
id |
For a full description, go to Standard Attributes.
查看完整的属性