1.js部分:
function swf(src,w,h){
html = '';
html += '<object classid=clsid:d27cdb6e-ae6d-11cf-96b8-444553540000 codebase=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0 width='+w+' height='+h+' id=main>';
html += '<param name=allowscriptaccess value=samedomain />';
html += '<param name=movie value='+src+' />';
html += '<param name=quality value=high />';
html += '<param name=wmode value=transparent />';
html += '<embed src=main.swf quality=high bgcolor=#cc6600 width='+w+' height='+h+' name=main align=center allowscriptaccess=samedomain type=application/x-shockwave-flash pluginspage=http://www.macromedia.com/go/getflashplayer />';
html += '<//object>';
document.write(html);
}
2.调用部分
<script>swf('http://www.VeVb.com/benner.swf','1004','159')</script>