|G|这段程序什么意思?
<SCRIPT LANGUAGE=JavaScript>
<!--
var InternetExplorer = navigator.appName.indexOf( "Microsoft ") != -1;
function myFlash_DoFSCommand(command, args) {
var myFlashObj = document.getElementById( "myFlash ");
alert (args);
}
if (navigator.appName && navigator.appName.indexOf( "Microsoft ") != -1 &&
navigator.userAgent.indexOf( "Windows ") != -1 && navigator.userAgent.indexOf( "Windows 3.1 ") == -1) {
document.write( ' <SCRIPT LANGUAGE=VBScript\> \n ');
document.write( 'on error resume next \n ');
document.write( 'Sub myFlash_FSCommand(ByVal command, ByVal args)\n ');
document.write( ' call myFlash_DoFSCommand(command, args)\n ');
document.write( 'end sub\n ');
document.write( ' </SCRIPT\> \n ');
}
//-->
</SCRIPT>
------解决方案--------------------不懂 友情UP
------解决方案--------------------貌似
如果不是IE浏览器 不是windows 就用vbs 调用javascript的一个函数
------解决方案--------------------如果是IE浏览器但不是Windows 3.1,就写一段vbscript脚本到页面中。
------解决方案--------------------根据浏览器类型调一个方法