第一次用到這個,做個記錄,在html頁面中調用本地程序:
復制代碼 代碼如下:
<html>
<head>
<script language="javascript">
function Run(strPath)
{
var objShell = new ActiveXObject("wscript.shell");
objShell.exec(strPath);
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>