JavaScript调用客户端的可执行文件(示例代码)

这篇文章主要是对JavaScript调用客户端的可执行文件(示例代码)进行了介绍,需要的朋友可以过来参考下,希望对大家有所帮助

复制代码 代码如下:


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

<input type="button" value="Notepad"/>
<input type="button" value="word" />
<input type="button" value="word" />

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdwxyd.html