我正在尝试运行 shell 命令以从 JavaScript 打开记事本。这就是我的代码的样子:
<script type="text/javascript">
function runNotepad() {
var oShell = new ActiveXObject("Shell.Application");
var commandtoRun = "C:\\WINDOWS\\Notepad.exe";
oShell.ShellExecute(commandtoRun, null, "", "open", "1");
}
</script>
当我尝试运行它时,它会给我一个错误提示Microsoft JScript runtime error: Permission denied
。
我也Allow active content to run in files on my computer
加入了,IE
但还是没有运气。
知道我在这里缺少什么吗?