欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

html中使用javascript調(diào)用本地程序(exe、doc等)實現(xiàn)代碼

 更新時間:2013年04月26日 16:00:07   作者:  
調(diào)用本地程序(exe,doc等)使用html中的javascript實現(xiàn),不可思議吧,接下來為大家詳細(xì)介紹下,感興趣的朋友可以參考下哈
第一次用到這個,做個記錄,在html頁面中調(diào)用本地程序:
復(fù)制代碼 代碼如下:

<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>

相關(guān)文章

最新評論