Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
跟进:虽然我已经将 swfobject 与静态发布一起使用,但动态发布解决了我的问题。谢谢您的帮助。
哎呀!我刚刚删除了原帖。
你为什么不使用SWFObject?它比它更健壮document.write、更灵活。
document.write
只需选择“动态发布”,SWFObject 就会为您提供所需的一切。
此外,document.write 是邪恶的。
我同意 strah 的观点,即 SWFObject 是可行的方法,但如果您仍想在某个位置插入 HTML,您可以使用 div:
<div id="Flash"></div>
然后使用以下javascript:
document.getElementById("Flash").innerHTML = "flashStuff";
另外,我想指出,对象的后半部分是相同的,因此您可以将 if 仅用于第一部分以节省空间。