码迷,mamicode.com
首页 > Web开发 > 详细

js调用本地 exe

时间:2015-04-10 13:09:39      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

 

js方法 

  function Run(strPath)  //only for ie
  {    
             try    
             {    
               var objShell = new ActiveXObject("wscript.shell");  
               objShell.CurrentDirectory="E:\\YOURPATH\\C++\\CHelloWord 3\\Debug\\"; 
               //设置当前路径很重要,能让exe程序解决 相对路径问题 (否则会在html所在路径找)
               objShell.Run(strPath);    
               objShell = null;    
             }  catch(e){  
                  alert(e.message);   
             }    
  
  }  

html调用

<a href="#" onclick="Run(‘CHelloWord3.exe‘)">RUN EXE</a>    

  

js调用本地 exe

标签:

原文地址:http://www.cnblogs.com/ericyi/p/4414101.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!