17

カスタム タイトルとカスタム コンテンツを使用できるダイアログはありますかalert。多くのサイトを検索しましたが、適切なものが見つかりません。どのサイト リンクまたはどのコンテンツも評価できます。confirmjquery

4

5 に答える 5

16

jquery UIコンポーネントを使用してカスタムメッセージボックスを作成しました。ここにデモがありますhttp://jsfiddle.net/eraj2587/Pm5Fr/14/

キャプション名、メッセージ、ボタンのテキストなどのパラメーターのみを渡す必要があります。任意のボタンクリックでトリガー機能を指定できます。これは役に立ちます。

于 2013-07-15T07:18:53.833 に答える
10

最高の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()
);

サンプルアラート

于 2015-07-21T21:49:45.853 に答える
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));
})

これはあなたを助けるはずです

于 2013-07-15T07:11:52.957 に答える
2

JQuery UI のダイアログ ウィジェットを使用できます

http://jqueryui.com/dialog/

于 2013-07-15T07:10:14.097 に答える
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>
于 2013-07-15T07:11:04.533 に答える