2011-05-02 374 views
3

我知道我可以撥打alert('Warning1');alert('Warning2'); ,它會顯示2個提醒。但是,當我使用JAlert Page中提到的JAlert插件時,我無法顯示多個警報消息。你們有沒有使用過這個插件並解決了相同的問題?如何多次顯示'JAlert'彈出窗口?

+0

您鏈接到了錯誤的插件...它是關於上下文菜單。 – 2011-05-02 13:13:58

+0

http://labs.abeautifulsite.net/projects/js/jquery/alerts/demo/ – ppumkin 2011-05-02 13:19:30

+0

你想同時顯示2個提醒嗎?還是一個接一個? – ppumkin 2011-05-02 13:19:45

回答

4

右對齊,所以我做了一個樣本HTML和測試這個東西出來

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

<head> 
<!-- Dependencies --> 
<script src="jquery.min.js" type="text/javascript"></script> 
<script src="jquery-ui.min.js" type="text/javascript"></script> 
<!-- Core files --> 
<script src="jquery.alerts.js" type="text/javascript"></script> 
<link href="jquery.alerts.css" rel="stylesheet" type="text/css" media="screen" /> 

<script type="text/javascript"> 
     $(document).ready(function() { 

      jAlert('This is a custom alert box', 'Alert Dialog', doAlert() ); 

      function doAlert() { 
       alert('CallBack') 
      } 

     }); 
</script> 

</head> 

<body> 
</body> 

因此,基於從網站docuemntation

使用 這個插件利用$ .alerts命名空間,但是有三個內置的快捷功能>使執行更容易:

jAlert(message,[title,callback])

現在好了,這是jQuery的

  1. 文件準備啓動的邏輯
  2. jAlert顯示自定義框及認定中應儘快做回調doAlert()
  3. 作爲第一jAlert clsoes它會做回調,並打開jALert

實際發生的

的另一個實例10
  1. 功能doAlert實際jAlert之前大火被調用回調
  2. 第一jAlert觸發OK!但沒有顯示出來,因爲已經有一個jAlert isntance和僅僅指剛忽略不管發生什麼事

總之

此插件無法在內部處理多個呼叫,回調是錯誤的!因爲他並沒有叫回來,但調用一個函數調用自身或等待inital jAlert被接受

解決方案

  1. 找到另一個插件
  2. 之前創建一個內部的JScript排隊系統。不知何故基於這個插件工作有多可怕

爲什麼alert();那麼工作??!?!?!?!?

因爲當您撥打alert();代碼執行STOPS並等待,直到您按OK並繼續代碼。

所以我很抱歉地說,但這個插件運行不正常,我建議你找到另一個也許。

+0

我會嘗試做一些代碼來做你需要的。但現在我不確定。 – ppumkin 2011-05-04 20:30:08

+0

謝謝。要找到另一個插件。 – 2011-05-05 06:29:35

1

我有同樣的問題,並像這樣解決它: 在jquery.alerts。JS,只是爲公共職能的意見之前,我已經插入這樣的:

raiseNextDialog: function() { 
     $.alerts.callIsActive = false; 
     if ($.alerts.waitingCalls.length>0) { 
      var params = $.alerts.waitingCalls.shift(); 
      $.alerts._show(params[0], params[1], params[2], params[3], params[4]); 
     } 
    }, 
    dialogShallWait: function (title, msg, value, type, callback) { 
     if ($.alerts.callIsActive) { 
      $.alerts.waitingCalls.push([title, msg, value, type, callback]); 
      return true; // can't show now 
     } else { 
      $.alerts.callIsActive = true; 
      return false; 
     } 
    }, 

的想法是,如果先前的對話仍然是開放的,我們按這個喚到數組,在關閉對話框中使用。

現在,我們還需要添加一行到_show()函數的開頭:

if ($.alerts.dialogShallWait(title, msg, value, type, callback)) return; 

而且爲五。點擊()處理,我們需要調用回調後,加入這行:

$.alerts.raiseNextDialog(); 

就這樣!

我想更新創建者,但沒有辦法在他的網站上發表評論... 而我正在使用使用標準主題演示的精彩版本here。太好了!

+0

我也面臨同樣的問題,我的客戶請求一個提醒框提醒會話時間,然後5分鐘後,另一個提醒框過期會話。開發人員已將jAlert用於所有警報框,所以我也使用它。我試過了,但是你的代碼沒有工作,我認爲raiseNextDialog()方法有問題,因爲第二個警報只在短時間內出現並立即關閉。爲了節省時間,我用一個簡單的解決方案來解決我的情況,通過使用一些標誌:)。不管怎樣,謝謝。 – 2012-03-07 04:14:27

1

上一個答案部分正確,但未能定義包含多個警報的數組($ .alerts.waitingCalls)。下面的代碼替換整個jquery.alerts.js(整個包,請訪問:http://code.google.com/p/jalert-plus/downloads/list

// jQuery Alert Dialogs Plugin 
// 
// Version 1.1 (extended) 
// 
// Cory S.N. LaViska 
// A Beautiful Site (http://abeautifulsite.net/) 
// 14 May 2009 
// 
// Mike Walters 
// 27 December 2011 
// http://code.google.com/p/jalert-plus/downloads/list 
// 
// Visit http://abeautifulsite.net/notebook/87 for more information 
// 
// Usage: 
//  jAlert(message, [title, callback]) 
//  jConfirm(message, [title, callback]) 
//  jPrompt(message, [value, title, callback]) 
// 
// History: 
// 
//  1.00 - Released (29 December 2008) 
// 
//  1.01 - Fixed bug where unbinding would destroy all resize events 
// 
//  DECEMBER 2011 - added ability to popup multiple alerts (mike walters) 
// 
// License: 
// 
// This plugin is dual-licensed under the GNU General Public License and the MIT License and 
// is copyright 2008 A Beautiful Site, LLC. 
// 



(function($) { 

    $.alerts = { 

     // These properties can be read/written by accessing $.alerts.propertyName from your scripts at any time 

     verticalOffset: -75,    // vertical offset of the dialog from center screen, in pixels 
     horizontalOffset: 0,    // horizontal offset of the dialog from center screen, in pixels/ 
     repositionOnResize: true,   // re-centers the dialog on window resize 
     overlayOpacity: .01,    // transparency level of overlay 
     overlayColor: '#FFF',    // base color of overlay 
     draggable: true,     // make the dialogs draggable (requires UI Draggables plugin) 
     okButton: '&nbsp;OK&nbsp;',   // text for the OK button 
     cancelButton: '&nbsp;Cancel&nbsp;', // text for the Cancel button 
     dialogClass: null,     // if specified, this class will be applied to all dialogs 

     waitingCalls: new Array(), 

     raiseNextDialog: function() { 
      $.alerts.callIsActive = false; 
      if ($.alerts.waitingCalls.length>0) { 
       var params = $.alerts.waitingCalls.shift(); 
       $.alerts._show(params[0], params[1], params[2], params[3], params[4]); 
      } 
     }, 

     dialogShallWait: function (title, msg, value, type, callback) { 
      if ($.alerts.callIsActive) { 

       $.alerts.waitingCalls.push([title, msg, value, type, callback]); 
       return true; // can't show now 
      } else { 
       $.alerts.callIsActive = true; 
       return false; 
      } 
     }, 


     // Public methods 

     alert: function(message, title, callback) { 
      if(title == null) title = 'Alert'; 
      $.alerts._show(title, message, null, 'alert', function(result) { 
       if(callback) callback(result); 
      }); 
     }, 

     confirm: function(message, title, callback) { 
      if(title == null) title = 'Confirm'; 
      $.alerts._show(title, message, null, 'confirm', function(result) { 
       if(callback) callback(result); 
      }); 
     }, 

     prompt: function(message, value, title, callback) { 
      if(title == null) title = 'Prompt'; 
      $.alerts._show(title, message, value, 'prompt', function(result) { 
       if(callback) callback(result); 
      }); 
     }, 

     // Private methods 

     _show: function(title, msg, value, type, callback) { 


     if ($.alerts.dialogShallWait(title, msg, value, type, callback)) return; 

      $.alerts._hide(); 
      $.alerts._overlay('show'); 

      $("BODY").append(
       '<div id="popup_container">' + 
       '<h1 id="popup_title"></h1>' + 
       '<div id="popup_content">' + 
        '<div id="popup_message"></div>' + 
       '</div>' + 
       '</div>'); 

      if($.alerts.dialogClass) $("#popup_container").addClass($.alerts.dialogClass); 

      // IE6 Fix 
      var pos = ($.browser.msie && parseInt($.browser.version) <= 6) ? 'absolute' : 'fixed'; 

      $("#popup_container").css({ 
       position: pos, 
       zIndex: 99999, 
       padding: 0, 
       margin: 0 
      }); 

      $("#popup_title").text(title); 
      $("#popup_content").addClass(type); 
      $("#popup_message").text(msg); 
      $("#popup_message").html($("#popup_message").text().replace(/\n/g, '<br />')); 

      $("#popup_container").css({ 
       minWidth: $("#popup_container").outerWidth(), 
       maxWidth: $("#popup_container").outerWidth() 
      }); 

      $.alerts._reposition(); 
      $.alerts._maintainPosition(true); 

      switch(type) { 
       case 'alert': 
        $("#popup_message").after('<div id="popup_panel"><input type="button" value="' + $.alerts.okButton + '" id="popup_ok" /></div>'); 

        $("#popup_ok").click(function() { 
         $.alerts._hide(); 
         callback(true); 
         $.alerts.raiseNextDialog(); 
        }); 
        $("#popup_ok").focus().keypress(function(e) { 
         if(e.keyCode == 13 || e.keyCode == 27) $("#popup_ok").trigger('click'); 
        }); 
       break; 
       case 'confirm': 
        $("#popup_message").after('<div id="popup_panel"><input type="button" value="' + $.alerts.okButton + '" id="popup_ok" /> <input type="button" value="' + $.alerts.cancelButton + '" id="popup_cancel" /></div>'); 
        $("#popup_ok").click(function() { 
         $.alerts._hide(); 
         if(callback) callback(true); 
         $.alerts.raiseNextDialog(); 
        }); 
        $("#popup_cancel").click(function() { 
         $.alerts._hide(); 
         if(callback) callback(false); 
         $.alerts.raiseNextDialog(); 
        }); 
        $("#popup_ok").focus(); 
        $("#popup_ok, #popup_cancel").keypress(function(e) { 
         if(e.keyCode == 13) $("#popup_ok").trigger('click'); 
         if(e.keyCode == 27) $("#popup_cancel").trigger('click'); 
        }); 
       break; 
       case 'prompt': 
        $("#popup_message").append('<br /><input type="text" size="30" id="popup_prompt" />').after('<div id="popup_panel"><input type="button" value="' + $.alerts.okButton + '" id="popup_ok" /> <input type="button" value="' + $.alerts.cancelButton + '" id="popup_cancel" /></div>'); 
        $("#popup_prompt").width($("#popup_message").width()); 
        $("#popup_ok").click(function() { 
         var val = $("#popup_prompt").val(); 
         $.alerts._hide(); 
         if(callback) callback(val); 
         $.alerts.raiseNextDialog(); 
        }); 
        $("#popup_cancel").click(function() { 
         $.alerts._hide(); 
         if(callback) callback(null); 
         $.alerts.raiseNextDialog(); 
        }); 
        $("#popup_prompt, #popup_ok, #popup_cancel").keypress(function(e) { 
         if(e.keyCode == 13) $("#popup_ok").trigger('click'); 
         if(e.keyCode == 27) $("#popup_cancel").trigger('click'); 
        }); 
        if(value) $("#popup_prompt").val(value); 
        $("#popup_prompt").focus().select(); 
       break; 
      } 

      // Make draggable 
      if($.alerts.draggable) { 
       try { 
        $("#popup_container").draggable({ handle: $("#popup_title") }); 
        $("#popup_title").css({ cursor: 'move' }); 
       } catch(e) { /* requires jQuery UI draggables */ } 
      } 
     }, 

     _hide: function() { 
      $("#popup_container").remove(); 
      $.alerts._overlay('hide'); 
      $.alerts._maintainPosition(false); 
     }, 

     _overlay: function(status) { 
      switch(status) { 
       case 'show': 
        $.alerts._overlay('hide'); 
        $("BODY").append('<div id="popup_overlay"></div>'); 
        $("#popup_overlay").css({ 
         position: 'absolute', 
         zIndex: 99998, 
         top: '0px', 
         left: '0px', 
         width: '100%', 
         height: $(document).height(), 
         background: $.alerts.overlayColor, 
         opacity: $.alerts.overlayOpacity 
        }); 
       break; 
       case 'hide': 
        $("#popup_overlay").remove(); 
       break; 
      } 
     }, 

     _reposition: function() { 
      var top = (($(window).height()/2) - ($("#popup_container").outerHeight()/2)) + $.alerts.verticalOffset; 
      var left = (($(window).width()/2) - ($("#popup_container").outerWidth()/2)) + $.alerts.horizontalOffset; 
      if(top < 0) top = 0; 
      if(left < 0) left = 0; 

      // IE6 fix 
      if($.browser.msie && parseInt($.browser.version) <= 6) top = top + $(window).scrollTop(); 

      $("#popup_container").css({ 
       top: top + 'px', 
       left: left + 'px' 
      }); 
      $("#popup_overlay").height($(document).height()); 
     }, 

     _maintainPosition: function(status) { 
      if($.alerts.repositionOnResize) { 
       switch(status) { 
        case true: 
         $(window).bind('resize', $.alerts._reposition); 
        break; 
        case false: 
         $(window).unbind('resize', $.alerts._reposition); 
        break; 
       } 
      } 
     } 

    } 

    // Shortuct functions 
    jAlert = function(message, title, callback) { 
     $.alerts.alert(message, title, callback); 
    } 

    jConfirm = function(message, title, callback) { 
     $.alerts.confirm(message, title, callback); 
    }; 

    jPrompt = function(message, value, title, callback) { 
     $.alerts.prompt(message, value, title, callback); 
    }; 

})(jQuery);