首页 > 编程 > JavaScript > 正文

js 调用本地exe的例子(支持IE内核的浏览器)

2019-11-20 23:06:53
字体:
来源:转载
供稿:网友
我实验了一下 : 使用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>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表