K3

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Untitled Page</title>
    <script type="text/javascript" language="javascript">
        function callExe() {
            var file = "C:\\Windows\\system32\\notepad.exe";
            var shellObj = new ActiveXObject("Wscript.Shell");
            alert(file);
            shellObj.Run(file);
            shellObj = null;
        } 
    </script>
</head>
<body>
    <input id="Button2" type="button" value="调用" onclick="callExe();" />
</body>
</html>

 

posted on 2013-08-01 03:39  K3  阅读(432)  评论(0编辑  收藏  举报