javascript调用本地程序...
时间:2010-08-19 来源:chendanming
javascript调用本地程序
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>js</title>
<SCRIPT language=JavaScript>
function Run(strPath)
{
try
{
var objShell = new ActiveXObject("wscript.shell");
objShell.Run(strPath);
objShell = null;
}
catch(e)
{
alert('找不到文件"'+strPath+'"(或它的组件之一)。请确定路径和文件名是否正确.')
}
}
</SCRIPT>
</head>
<!--以下是三种调用方式,onLoad(),oclick(),再就是直接写连接地址调用-->
<body>
<a href="#" onclick="Run('file:///d:/test.bat')">ES</a>
<a href="#" onclick="Run('file:///d:/ubnt-discovery.bat')">SSS</a>
</body>
</html>
相关阅读 更多 +