html中使⽤javascript调⽤本地程序(exe、doc等)实现
代码
第⼀次⽤到这个,做个记录,在html页⾯中调⽤本地程序:
复制代码代码如下:
<html>
<head>
<script language="javascript">
function Run(strPath)
{
var objShell = new ActiveXObject("wscript.shell");
<(strPath);
script在html中的用法
objShell = null;
}
</script>
</head>
<body>
请输⼊要运⾏的程序路径:<br>
<input name=exe type=text size=20 value="D:\\a.doc">
<BUTTON class=button onclick="Run(exe.value)">确定</BUTTON>
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。