function infoBox(title,text){
$('.infobox').dialog({
open: function( event, ui ) {$('.infobox').append('<p style="display:none;>'+text+'</p>');
},
beforeClose: function( event, ui ) {$('.infobox p').remove();
},
show:'drop' ,
position:'top',
title:title,
});
};
オプションのようなものはありafteropen:
ますか?
または、UI効果が終了した後に追加されたテキストをフェードインさせる他の方法はありますか?
たぶん次のようなもの:show:[{show:'drop', function(){$('.infobox p').fadeIn();}],
? 前もって感謝します