我知道我可以撥打alert('Warning1');alert('Warning2');
,它會顯示2個提醒。但是,當我使用JAlert Page中提到的JAlert插件時,我無法顯示多個警報消息。你們有沒有使用過這個插件並解決了相同的問題?如何多次顯示'JAlert'彈出窗口?
回答
右對齊,所以我做了一個樣本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的
- 文件準備啓動的邏輯
- jAlert顯示自定義框及認定中應儘快做回調doAlert()
- 作爲第一jAlert clsoes它會做回調,並打開jALert
實際發生的
的另一個實例10- 的功能doAlert實際jAlert之前大火被調用回調
- 第一jAlert觸發OK!但沒有顯示出來,因爲已經有一個jAlert isntance和僅僅指剛忽略不管發生什麼事
總之
此插件無法在內部處理多個呼叫,回調是錯誤的!因爲他並沒有叫回來,但調用一個函數調用自身或等待inital jAlert被接受
解決方案
- 找到另一個插件
- 之前創建一個內部的JScript排隊系統。不知何故基於這個插件工作有多可怕
爲什麼alert();那麼工作??!?!?!?!?
因爲當您撥打alert();
代碼執行STOPS並等待,直到您按OK並繼續代碼。
所以我很抱歉地說,但這個插件運行不正常,我建議你找到另一個也許。
我會嘗試做一些代碼來做你需要的。但現在我不確定。 – ppumkin 2011-05-04 20:30:08
謝謝。要找到另一個插件。 – 2011-05-05 06:29:35
我有同樣的問題,並像這樣解決它: 在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。太好了!
我也面臨同樣的問題,我的客戶請求一個提醒框提醒會話時間,然後5分鐘後,另一個提醒框過期會話。開發人員已將jAlert用於所有警報框,所以我也使用它。我試過了,但是你的代碼沒有工作,我認爲raiseNextDialog()方法有問題,因爲第二個警報只在短時間內出現並立即關閉。爲了節省時間,我用一個簡單的解決方案來解決我的情況,通過使用一些標誌:)。不管怎樣,謝謝。 – 2012-03-07 04:14:27
上一個答案部分正確,但未能定義包含多個警報的數組($ .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: ' OK ', // text for the OK button
cancelButton: ' Cancel ', // 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);
- 1. 如何顯示其他彈出窗口上的彈出窗口?
- 2. JQuery - 僅顯示彈出窗口一次
- 3. JavaScript彈出窗口只顯示一次
- 4. 一次顯示一個彈出窗口
- 5. 只顯示jquery彈出窗口一次
- 6. 如何在javascript中僅顯示一次彈出窗口一次?
- 7. 如何顯示1次訪問者的彈出窗口1次?
- 8. 顯示多個彈出窗口
- 9. 如何顯示彈出窗口
- 10. 如何顯示彈出窗口?
- 11. 如何顯示彈出窗口?
- 12. 彈出窗口不顯示
- 13. 彈出窗口不顯示
- 14. 彈出窗口不顯示
- 15. 顯示彈出窗口
- 16. iPhone:MKAnnotation顯示彈出窗口?
- 17. 如何調整彈出窗口一次彈出窗口? (顯示彈出頁面的特定部分)
- 18. Safari iOS地理位置API彈出窗口顯示多次
- 19. 如何使JavaScript中的彈出窗口只顯示一次?
- 20. 如何僅使用jQuery一次顯示一個彈出窗口?
- 21. Oracle Forms彈出窗口多次出現
- 22. asp.net - 彈出窗口顯示彈出窗口
- 23. 如何顯示驗證彈出窗口之類的彈出窗口?
- 24. 如何僅在窗口範圍內顯示彈出窗口?
- 25. 如何使用knockout.js顯示警報/彈出窗口/窗口
- 26. 如何在父窗口頂部顯示彈出窗口?
- 27. 如何在我的主窗口中顯示彈出窗口?
- 28. 如何顯示傳單標記的許多彈出窗口
- 29. 如何顯示將顯示彈出窗口的鏈接
- 30. 彈出窗口顯示一次,但不是再次顯示動畫WPF
您鏈接到了錯誤的插件...它是關於上下文菜單。 – 2011-05-02 13:13:58
http://labs.abeautifulsite.net/projects/js/jquery/alerts/demo/ – ppumkin 2011-05-02 13:19:30
你想同時顯示2個提醒嗎?還是一個接一個? – ppumkin 2011-05-02 13:19:45