日期:2014-05-16  浏览次数:20343 次

js如何给embed加上allowfullscree属性
JScript code

<p><embed src="绪论/绪论.swf" type="application/x-shockwave-flash" width="550" height="400" quality="high"></embed></p>
<script language="javascript" type="text/javascript">
$().ready(function(){
    $("p").attr("align","center");    
    $("embed").attr("allowfullscreen","true");
});
</script>


酱紫在页面中的flash文件不能全屏,而且源代码中embed标签中没有allowfullscreen属性,如果人工加上allowfullscreen属性,是可以全屏的

------解决方案--------------------
代码本身没有问题,不过IE不支持embed,需要使用object嵌入FLASH。
http://www.w3help.org/zh-cn/causes/HO8001