DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> html中使用javascript調用本地程序(exe、doc等)實現代碼
html中使用javascript調用本地程序(exe、doc等)實現代碼
編輯:關於JavaScript     
第一次用到這個,做個記錄,在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>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved