可以通过js调用ActiveXObject和VBScript脚本来实现,代码如下:
<html><head>
<script type="text/javascript">
function runcmd() { command="cmd.exe" WSH=new ActiveXObject("WScript.Shell") WSH.run(command) } </script>
</head>
<body><a href="#" onclick="runcmd() return false">调用cmd</a>
</body>
</html>
需要用ActiveXObject,ActiveXObject只支持IE,并且权限会很高。
能在浏览器运行exe的都不是一般的人物,所以回答不了你。
IE可能有效的。
var axo = new ActiveXObject(‘WSCRIPT.Shell’)
axo.run('cmd.exe的路径地址', '执行的命令例如dir')