<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>
网友评论