jquery中的自定义警报和确认框

时间:2013-07-15 07:07:58

标签: javascript jquery

alert中是否有confirmjquery对话框,其中包含自定义标题和自定义内容。我搜索了很多网站但找不到合适的网站。任何网站链接或任何内容都很明显。

6 个答案:

答案 0 :(得分:15)

我使用jquery UI组件创建了自定义消息框。这是演示http://jsfiddle.net/eraj2587/Pm5Fr/14/

你必须只传递标题名称,消息,按钮的文本等参数。您可以在任何按钮单击上指定触发器功能。这对你有帮助。

答案 1 :(得分:8)

尝试使用SweetAlert只是最好的。 您将获得大量的定制和灵活性。

确认示例

sweetAlert(
  {
    title: "Are you sure?",
    text: "You will not be able to recover this imaginary file!",
    type: "warning",   
    showCancelButton: true,   
    confirmButtonColor: "#DD6B55",
    confirmButtonText: "Yes, delete it!"
  }, 
  deleteIt()
);

Sample Alert

答案 2 :(得分:3)

检查jsfiddle http://jsfiddle.net/CdwB9/3/并点击删除

function yesnodialog(button1, button2, element){
  var btns = {};
  btns[button1] = function(){ 
      element.parents('li').hide();
      $(this).dialog("close");
  };
  btns[button2] = function(){ 
      // Do nothing
      $(this).dialog("close");
  };
  $("<div></div>").dialog({
    autoOpen: true,
    title: 'Condition',
    modal:true,
    buttons:btns
  });
}
$('.delete').click(function(){
    yesnodialog('Yes', 'No', $(this));
})

这应该可以帮到你

答案 3 :(得分:3)

答案 4 :(得分:2)

您可以使用JQuery UI的对话框小部件

http://jqueryui.com/dialog/

答案 5 :(得分:1)

jQuery UI 拥有它自己的元素,但仅jQuery没有。

http://jqueryui.com/dialog/

工作示例:

<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>jQuery UI Dialog - Default functionality</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css" />
  <script>
  $(function() {
    $( "#dialog" ).dialog();
  });
  </script>
</head>
<body>

<div id="dialog" title="Basic dialog">
  <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>


</body>
</html>