« jQuery Alert Dialogs (Alert, Confirm, & Prompt Replacements)

基本范例

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

Confirm
jConfirm('Can you confirm this?', 'Confirmation Dialog', function(r) {
    jAlert('Confirmed: ' + r, 'Confirmation Results');
});

Prompt
jPrompt('Type something:', 'Prefilled value', 'Prompt Dialog', function(r) {
    if( r ) alert('You entered ' + r);
});

高级范例

对话框带HTML代码
jAlert('You can use HTML, such as bold, italics, and underline!');

Alternate Styles

By changing the value of the $.alerts.dialogClass property (and creating your own CSS class), you can changes the style of your dialogs:

View the plugin source for additional properties that can be modifed at runtime.

下载代码说明
X关闭

JQuery Alert、confirm、prompt提示框插件

jQuery Alert Dialogs,又一个基于jQuery的提示框插件,主要包括Alert、Confirm、prompt这三种,还有一个高级范例,可以在提示框内嵌入HTML语言,可以自定义风格样式。jQuery的提示框插件有很多种,每一款都是出自不同的高人之手,因此都比较有自己的特点,包括风格和使用方法等。这个Jquery插件的目的是替代JavaScript的标准函数alert(),con