Kopieren Sie den Codecode wie folgt:
<Skript>
<!--Öffnen Sie das Notepad-Programm-->
Funktion openNotepad(){
var wsh=new ActiveXObject("wscript.shell")
wsh.run("notepad.exe")//Wenn es in "Ausführen" ausgeführt werden kann, können Sie es direkt hier schreiben, andernfalls müssen Sie den absoluten Pfad schreiben
}
<!--Öffnen Sie das Wort Programm-->
Funktion openWord()
{
var wsh=new ActiveXObject("wscript.shell");
wsh.run("calc.exe");
}
<!--Öffnen Sie das Programm am angegebenen Speicherort-->
Funktion openTxt(Datei)
{
var wsh=new ActiveXObject("wscript.shell");
wsh.run(file);
}
</script>
<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');"/>