我有这个脚本。这确定浏览器中是否安装了 Flash 播放器,它将浏览器重定向到 Flash 网站。如果没有,那么它会打开一个非 Flash 网站。
代码在这里:
<SCRIPT LANGUAGE="JavaScript">
<!--
if ((navigator.appName == "Microsoft Internet Explorer" &&
navigator.appVersion.indexOf("Mac") == -1 && navigator.appVersion.indexOf("3.1") == -1) ||
(navigator.plugins && navigator.plugins["Shockwave Flash"])|| navigator.plugins["Shockwave Flash 2.0"]){
window.location='flash/index.html';
}
else {
window.location='index.html';
}
-->
</SCRIPT>
我想要的是将此代码嵌入到非闪存索引页面中。它应该只检查是否没有闪存,然后简单地使用已经打开的当前索引文件,或者如果没有闪存播放器,则从闪存网站中加载索引文件。
目前,当 index.html(非 Flash)打开时,它会进入循环并继续检查 Flash 播放器。我可以修改window.location='index.html';
语句 no 以在此处加载任何文件,只需继续打开已打开的文件即可。??