我正在使用codeigniter,我需要一个弹出窗口。我使用了anchor_popup函数。这是我的代码:
<?php
$attributes = array(
'class' => 'blue-button',
'width' => '800',
'height' => '600',
'resizable' => 'no',
'screenx' => '\'+((parseInt(screen.width) - 800)/2)+\'',
'screeny' => '\'+((parseInt(screen.height) - 600)/2)+\'',
);
echo anchor_popup('admin/employee/add', 'Start Worksheet', $attributes);
?>
这将打开一个带有关闭,最小化和最大化按钮的新窗口但是我需要禁用或隐藏最小化和最大化按钮。我怎么能这样做?