我的弹出窗口定义在IE8中不起作用,但在FF中起作用...
<script type="text/javascript">
<!--
function popUp(url, width, height)
{
window.open(url, url, 'height=1024'+ height +'&width=768'+ width);
}
//-->
</script>
<? if((int)$_GET[editcontent]!=0) { ?>
<script> popUp("/refreshercms/structure/edit.php?pageid=<?=(int)$_GET[editcontent]?>"); </script>
<? } ?>
编辑:修复它。
<script language="javascript" type="text/javascript">
<!--
function popitup(url) {
newwindow=window.open(url,'name','height=1280,width=1024');
}
// -->
</script>