window.open不使用IE9

时间:2013-07-30 14:36:34

标签: php javascript internet-explorer internet-explorer-9

我无法在IE9中使用它:

编辑:抱歉,我忘了提到$ variable是从下拉菜单中选择的$ _GET。

我目前处于离线状态,

<a href="#"
    onclick="window.open('https://domain.com/contact-form?chatq=<?php echo $variable;?>@domain.com','resizable=1,width=320,height=200'); return false;">
    <br />click to send an email.
</a>

它在firefox和chrome中运行良好。我不确定IE的问题是什么。任何帮助将不胜感激。

谢谢!

1 个答案:

答案 0 :(得分:1)

在IE9上测试:

<?php

$variable = 3;

?>

<a 
onclick="window.open('https://domain.com/contact-form?chatq=<?php echo $variable;?   >@domain.com','resizable=1,width=320,height=200'); return false;">
<br />click to send an email.

</a>