嗨,我想在单击按钮时打开一个对话框。
这是我的代码:
$('#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;'",
});
它向我显示了一个空白页面,其中没有任何错误。