1
我有很多的麻煩找辦法讓jQuery用戶界面模式對話框work..the模式對話框剛剛返回false ...jQuery UI的模態對話框不工作
小提琴OU可以在這裏看到http://jsfiddle.net/fVrFj/6/
function modal_delete_pics(){
$(function(){
$("#dialog:ui-dialog").dialog("destroy");
$("#dialog-confirm").dialog({
resizable: false,
height:140,
modal: true,
buttons: {
"delete": function() {
$(this).dialog("close");
return true;
},
"cancel": function() {
$(this).dialog("close");
return false;
}
}
});
});
};
$('#clickme').click(function(){
if(modal_delete_pics()==true){
$('body').append('<div>deleted</div>');
}
else{
$('body').append('<div>canceled</div>');
}
});
非常感謝!
偉大的感謝名單了很多! – themis 2012-08-19 08:11:06