-4

我需要一个自定义的 jquery 确认框,它看起来类似于 javascript 确认框。我需要在确认框中自定义字体(红色)吗?请帮助我并做必要的事情......!

4

1 回答 1

0

在此处查看示例

$(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');  
 });
});

小提琴

于 2013-02-18T06:39:03.353 回答