Copiez le code comme suit :
<script>
<!--Ouvrez le programme Bloc-notes-->
fonction openNotepad(){
var wsh=nouveau ActiveXObject("wscript.shell")
wsh.run("notepad.exe")//S'il peut être exécuté dans "Exécuter", vous pouvez l'écrire directement ici, sinon vous devez écrire le chemin absolu
}
<!--Ouvrez le programme Word-->
fonction openWord()
{
var wsh=new ActiveXObject("wscript.shell");
wsh.run("calc.exe");
}
<!--Ouvrez le programme à l'emplacement spécifié-->
fonction openTxt (fichier)
{
var wsh=new ActiveXObject("wscript.shell");
wsh.run(fichier);
}
</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');"/>