gpt4 book ai didi

javascript - 我想在客户端计算机上通过 JavaScript 打开程序? (WScript.shell)

转载 作者:行者123 更新时间:2023-12-02 20:29:11 25 4
gpt4 key购买 nike

我尝试使用以下代码打开程序:

<head>
<title></title>
<script language="javascript" type="text/javascript">
function run() {
var shell = new ActiveXObject("WScript.shell");
if (shell) {
shell.run('"C:\\Program Files (x86)\\BitTorrent\\BitTorrent.exe"', 1);
}
else
{ alert("BitTorrent is not installed on your system."); }
}
</script>
</head>
<body onload="run()">

</body>
</html>

但是这不起作用。请问有什么帮助吗?

最佳答案

这是因为出于安全原因,浏览器阻止创建 ActiveX 控件。而且,ActiveX仅在IE中支持; IE 有允许在浏览器中运行 ActiveX 的选项,但我怀疑许多用户是否启用了此功能。

关于javascript - 我想在客户端计算机上通过 JavaScript 打开程序? (WScript.shell),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4440146/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com