Javascript调用本地程序


调用本地程序(exe,doc等)使用html中的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> 
QQ空间  新浪微博  腾讯微博  搜狐微博  人人网  开心网  百度搜藏  更多



你可能感兴趣的:(Javascript调用本地程序)