js在IE中调用本地exe的例子

发布时间:2019-11-21编辑:脚本学堂
js中调用本地exe程序。注意:适用于IE内核的浏览器。用火狐的请无视。

js中调用本地exe程序。
注意:适用于IE内核的浏览器。
用火狐的请无视。
 

复制代码 代码如下:
<html>
<head>
<script type="text/javascript">
function callExe()
{
// new ActiveXObject("Wscript.shell").run("notepad.exe D:a.png.txt");
//
new ActiveXObject("Wscript.Shell").run("D:工具Pb6安装Pb6安装SETUP.EXE");
}
</script>
</head>
<body>
<input id="Button2" type="button" value="调用" onclick="callExe();" />
</body>
</html>