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:
選項?jquery ui對話框 - 淡入效果
或任何其他方式讓ui-effect完成後附加文本淡入?
可能像這樣的:show:[{show:'drop', function(){$('.infobox p').fadeIn();}],
?在此先感謝
顯示: '下拉' 啓動效應 – 2013-02-28 23:17:47