Posted in Javascript onApril 26, 2013
第一次用到这个,做个记录,在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>
html中使用javascript调用本地程序(exe、doc等)实现代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@