2010-07-20 41 views
0

我知道如何使用javascript來定位一個常規的彈出窗口,但是我無法使它與CodeIgniter的anchor_popup函數一起工作。是否可以使用CodeIgniter的anchor_popup函數居中彈出窗口?

這裏是我的代碼

$attributes = array(
    'class'  => 'blue-button', 
    'width'  => '800', 
    'height' => '600', 
    'screenx' => '(window.width - 800)/2', 
    'screeny' => '(window.height - 600)/2' 
); 

echo anchor_popup('program/start_worksheet/8', 'Start Worksheet', $attributes); 

回答

2

這個工作對我來說:

<?php 
$attributes = array(
    'class'  => 'blue-button', 
    'width'  => '800', 
    'height' => '600', 
    'screenx' => '\'+((parseInt(screen.width) - 800)/2)+\'', 
    'screeny' => '\'+((parseInt(screen.height) - 600)/2)+\'', 
); 
echo anchor_popup('program/start_worksheet/8', 'Start Worksheet', $attributes); 
?> 

編輯:其實,我現在在這看......這似乎是像這個功能有點劈在網址幫手,但因爲它的工作原理是好的我認爲

+0

嗯,看起來好像有一種方法可以做到這一點,而不是有點駭人聽聞的東西....感謝您的解決方案! – 2010-07-22 03:40:38

相關問題