英[ˈɒbdʒɪkt] US[ˈɑ:bdʒekt]
##n.Object; target; object; object, objectvi.Disapprove, oppose; feel disgustedvt. Reasons for objectionThird person singular: objects Plural: objects Present participle: objecting Past tense: objected Past participle: objected
html object tag syntax
Function:Used to contain objects, such as images, audio, video, Java applets, ActiveX, PDF and Flash.
Description: The original intention of object is to replace img and applet elements. However, this did not happen due to bugs and lack of browser support. The browser's object support depends on the object type. Unfortunately, major browsers all use different code to load the same object types.
Note: Do not use the <object> tag for images, use the <img> tag instead.
html object tag example
<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>
Run instance »
Click the "Run instance" button to view the online instance