请问js如何使用ie浏览器打开谷歌浏览器???
你需要activex控件;
或有足够权限执行:
<script language=Javascript>
function test1(){
var wsh = new ActiveXObject('WSCript.shell');
wsh.run('file:\\C:\\Program%20Files%20(x86)\\Google\\Chrome\Application\\chrome.exe');
}
test1();
</script>
请问activex控件如何使用?