คัดลอกรหัสรหัสดังต่อไปนี้:
<สคริปต์>
<!--เปิดโปรแกรม Notepad-->
ฟังก์ชั่น openNotepad(){
var wsh=new ActiveXObject("wscript.shell")
wsh.run("notepad.exe")//หากสามารถเรียกใช้ใน "Run" คุณสามารถเขียนโดยตรงที่นี่ ไม่เช่นนั้นคุณจะต้องเขียนเส้นทางที่แน่นอน
-
<!--เปิดคำว่าโปรแกรม-->
ฟังก์ชั่น openWord()
-
var wsh=new ActiveXObject("wscript.shell");
wsh.run("calc.exe");
-
<!--เปิดโปรแกรมในตำแหน่งที่กำหนด-->
ฟังก์ชั่น openTxt (ไฟล์)
-
var wsh=new ActiveXObject("wscript.shell");
wsh.run(ไฟล์);
-
</สคริปต์>
<input type="button" id="notepad" value="Notepad" onclick="openNotepad();"/>
<input type="button" id="word" value="word" onclick="openWord();"/>
<input type="button" id="word" value="word" onclick="openTxt('c://caipiao.txt');"/>