复制代码 代码如下: <BR><STRONG><!--打开记事本程序--><BR>function openNotepad(){<BR> var wsh=new ActiveXObject("wscript.shell")<BR> wsh.run("notepad.exe")//如果在“运行”可以运行就可以在此直接写,否则要写上绝对路径<BR>}<BR><STRONG><!--打开word程序--><BR>function openWord()<BR>{<BR> var wsh=new ActiveXObject("wscript.shell");<BR> wsh.run("calc.exe");<BR>}<BR><STRONG><!--打开指定位置程序--><BR>function openTxt(file)<BR>{<BR> var wsh=new ActiveXObject("wscript.shell");<BR> wsh.run(file);<BR>}<BR>