现在的位置: 首页 > 综合 > 正文

Js调用本地程序

2012年08月19日 ⁄ 综合 ⁄ 共 313字 ⁄ 字号 评论关闭

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script   language=javascript>  
  function Open()
  {
  var wsh=new ActiveXObject("wscript.shell");  
  wsh.run("notepad.exe");
  }
  </script>
</head>

<body>
<input type="button" name="Submit" value="按钮" onclick="Open()" />
</body>
</html>

抱歉!评论已关闭.