how to load external flas开发者_如何学JAVAh in html..?
<object width="550" height="400"> <param name="movie" value="somefilename.swf"> <embed src="somefilename.swf" width="550" height="400"> </embed> </object>
In the code above there is both an <embed> tag and an <object> tag. This is because the <object> tag is recognized by Internet Explorer, and Netscape recognizes the <embed> tag and ignores the <object> tag.
<embed src="SRC_URL" type="application/x-shockwave-flash"></embed>
Don't worry about which tag to use. Grab the swfobject javascript file and let it do the work for you.
<embed>
精彩评论