在js函数中运行外部vbs文件

时间:2014-05-02 10:57:45

标签: javascript vbscript

我需要的是,在浏览器检查完成后,如果它是IE,js函数将调用.vbs文件,然后运行它...我已经google了一段时间,我没有找到有助于解决此案例的事情......有人可以给我任何提示吗?

这是实际的脚本:

<script>
function verify(){
    var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;

    if(!is_chrome)
    {
        var retVal = confirm("run vbs to proceed");
        if( retVal == true ){
      alert("User wants to continue!");
      return true;

        }else{
      alert("User does not want to continue!");
      return false;}
    }  
    else
    {
        window.location.href = "destination.html";
    }
}
</script>
</head>

<body>
<a onclick="verify()">Link</a>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

创建一个wshshell.run来运行。您必须导航到本地html页面才能执行此类操作以避免安全问题。