如何使用Visual force页面中的window.open()从chrome到IE打开新窗口? 现在window.open()正在打开相同的浏览器,即Chrome。 有什么办法可以强制window.open使用IE?该页面必须在IE中打开。
下面是我尝试过的代码
<apex:page>`enter code here`
<script>
function fun(){
window.open("https://www.google.com/");
}
</script>
<apex:commandButton onclick="fun()" value="Open" id="btnID"/>
</apex:page>
预先感谢