我在jquery中需要一个自定义的确认框,它看起来类似于javascript确认框。 我需要在确认框中自定义字体(红色)? 请帮助我做必要的......!
答案 0 :(得分:0)
查看示例here
$(document).ready(function() {
var $myDialog = $('<div></div>')
.html('You are going to open Facebook.com.<br/>Click OK to confirm. Click Cancel to stop this action.')
.dialog({
autoOpen: false,
title: 'Confirm..?',
buttons: {"OK": function() {
$(this).dialog("close");
window.open('http://www.facebook.com');
return true;
}, "Cancel": function() {
$(this).dialog("close");
return false;
}
}
});
$('#myOpener').click(function(e){
return $myDialog.dialog('open');
});
});