What's wrong with my website?
I've launched a website: .. But it does not work in IE 8 (the Flash movie does not load). It works fine in every other browser. I've no clue what's wrong or w开发者_JAVA百科here to look..
Any ideas?
You have a conditional statement which prevents the object from being loaded in IE:
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="nachtlens_60sec_player_2.swf" width="498" height="320">
<!--<![endif]-->
<div>
<h1>adobe flashplayer</h1>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
I would recommend you use a loader such as SWFObject for loading the flash rather than use this code anyway:
http://code.google.com/p/swfobject/
精彩评论