美文网首页
js 使用 IE 打开谷歌的方法

js 使用 IE 打开谷歌的方法

作者: 思念LY | 来源:发表于2019-10-11 14:03 被阅读0次
        <html xmlns="http://www.w3.org/1999/xhtml">
    
        <head>
          <meta charset="UTF-8">
          <title>js 使用 IE 打开谷歌的方法</title>
          <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
          <script type="text/javascript">
    
          function test() {
            var objShell = new ActiveXObject("WScript.Shell");
            /*
            :: 启动chrome浏览器指定网址
            start "C:\Program Files\Google\Chrome\Application\chrome.exe" http://www.weibo.com/
    
            :: 默认浏览器打开网站
            start iexplore.exe www.baidu.com
    
            或者
    
            start www.baidu.com
    
            :: 使用IE打开指定网址
            explorer http://www.weibo.com
            
            */
    
            /* 谷歌地址,如果默认是谷歌,可以不用写*/
            var openchrome = ' ';
            // var openchrome = '\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\" ';
    
            /* 如果地址参数为多个 & 改成 ^& */
            var url = 'http://www.weibo.com/'
            objShell.Run("cmd.exe /c start " + openchrome + url + " , 0, true");
          }
          </script>
        </head>
    
        <body>
          <div>
            <div>==================在IE中打开该页面==================</div>
            <BUTTON class='button' onclick="test()">点击用谷歌打开</BUTTON>
          </div>
        </body>
    
        </html>

    相关文章

      网友评论

          本文标题:js 使用 IE 打开谷歌的方法

          本文链接:https://www.haomeiwen.com/subject/uhbtmctx.html