Home > Article > Web Front-end > The valueType attribute of the param tag under the object tag in html
The valueType
attribute of the param tag under the object tag in html is
<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" />
<param name= "FileName" value="文件地址" valueType = "ref" /> </object>
valueType 可以取值 data ref object 规定值的 MIME 类型
. The abbreviation of MIME type is ( Multipurpose Internet Mail Extensions) represents Internet media type. MIME uses a simple string . It was originally used to identify the type of email attachment. The content-type attribute can be used in html files. Represents an Internet standard that describes a file type.
MIME types can contain video, images, text, audio, applications and other data.
The above is the detailed content of The valueType attribute of the param tag under the object tag in html. For more information, please follow other related articles on the PHP Chinese website!