Php window.open不使用IE9

Php window.open不使用IE9,php,javascript,internet-explorer,internet-explorer-9,Php,Javascript,Internet Explorer,Internet Explorer 9,我很难在IE9中使用此功能: 编辑:对不起,我忘了提到$variable是从下拉菜单选择中获取的$ 我现在离线 <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 />c

我很难在IE9中使用此功能:

编辑:对不起,我忘了提到$variable是从下拉菜单选择中获取的$

我现在离线

<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有什么问题。如有任何帮助,我们将不胜感激

谢谢

在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>


这是实际输出页面中的
吗?控制台有什么要说的吗?控制台中是否存在“无效参数”错误?您是否尝试过使用
chatq
的一些简单参数值,或者根本没有参数all@leftclickben:是的,$variable是从下拉选择中获取的$\u,它将打开到此人的联系人表单。