0

我无法让它在 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的问题是什么。任何帮助,将不胜感激。

谢谢!

4

1 回答 1

1

Tested on 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>
于 2013-07-30T14:50:41.980 回答