document.write('object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="" width="'+w+'" height="'+h+'" ');
document.write('param name="movie" value="' + file + '"');
document.write('param name="quality" value="high" ');
document.write('param name="wmode" value="transparent" ');
document.write('param name="menu" value="false" ');
document.write('embed src="' + file + '" quality="high" pluginspage="" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'"/embed ');
document.write('/object ');
}
上面的js脚本定义了一个函数swf,并设置三个变量,它们分别是:flile文件链接,w宽度,h高度。在XHTML中向这个函数传递变量即可实现flash的嵌入。如下代码:
div id="flash"
script type="text/javascript" language="javascript"swf('webjxcom.swf','500','220');/script
/div
建立id为flash的div作为一容器,在其内部嵌入js脚本,变量依次为:文件路径、宽度、高度。
看下面的全部代码:
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ""
html xmlns=""
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312" /
title符合web标准的嵌入Flash的方法/title
script type="text/javascript" language="javascript" src="flash.js"/script
style type="text/css"
#flash { width:500px; margin:50px auto; border:5px solid #03c;}
/style
/head
body
div id="flash"
script type="text/javascript" language="javascript"swf(webjxcom.swf','500','220');/script
/div
/body
/html