2013-08-02 248 views
0

嗨,我想打開一個對話框,當我點擊一個按鈕。
這裏是我的代碼:單擊按鈕時打開對話框。

$('#dialog').dialog({ autoOpen: false }); 

     $('#btn3').click(
      function() { 
       $('#dialog').dialog('open'); 
       return false; 
      } 
     ); 

和DIV按鈕

print $q->div({-id =>'dialog', -title => 'Profile'}); 

my $bt3 = $q->image_button({-src => '/media/images/edit_1.png', 
         -class => 'upd', 
         -title => 'update', 
         -name => 'update', 
         -value => $aArray->[$i]->{'ID'}, 
         - id =>'btn3', 
         -onclick =>"window.location.href = 'http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css;'", 
       }); 

它讓我看到一個空白頁沒有任何錯誤。

+0

你檢查了你的服務器的錯誤日誌? –

回答

0

我認爲-onclick不應該引用一個location.href更改爲一個css文件,而是完全刪除? (即拿走整行 - 單擊...)

相關問題