複製程式碼 程式碼如下: <BR><STRONG><BR><script><BR><BR><!- -開啟記事本程式--><BR><BR>function openNotepad(){<STRONG> var wsh=new ActiveXObject("wscript.shell")<BR> wsh.run("notepad.exe")//如果在「運行」可以運行就可以在此直接寫,否則要寫上絕對路徑}<BR><BR><!--打開word程式--><BR><BR>function openWord()<BR>{<STRONG> var wsh=new ActiveXObject("wscript.shell");<BR> wsh.run("calc.exe");}<BR><BR><!--開啟指定位置程式--><BR><BR>function openTxt(file)<BR>{ var wsh=new ActiveXObject("wscript.shell");<P> wsh.run(file);<BR>}<BR>