-1

我使用这个代码:

<script>
function LaunchApp() {
    if (!document.all) {
        alert("Available only with Internet Explorer.");
        return;
    }
    var ws = new ActiveXObject("WScript.Shell");
    ws.Exec("C:\\Windows\\notepad.exe");
}


<a href="javascript:LaunchApp()">Launch the executable</a> 

但这不起作用。(链接被禁用)

4

1 回答 1

2
  1. 您指向的不是同一个 JavaScript 函数。尝试这个:

    <button onclick="LaunchApp()">Run Exe File</button>

  2. 您的 Internet 设置必须设置为可能的最低安全级别,以允许您运行此类代码。

于 2012-12-09T21:43:24.403 回答