我如何使用简单的模态动态确认弹出窗口

时间:2009-08-06 15:11:46

标签: javascript jquery variables simplemodal

我使用的是简单的模型,这是一个非常简洁的代码,但我有一个我无法弄清楚的要求。

http://www.ericmmartin.com/simplemodal/

我的用例是用户点击某个操作后我想要“确认弹出窗口”的第三个选项。问题在于,在示例中,消息在js文件中被硬编码。

我需要能够传递此消息以及与“是”和“否”按钮关联的链接。

有人做过类似的事。

3 个答案:

答案 0 :(得分:3)

查看页面的来源会告诉您需要了解的所有内容。

<!-- Confirm -->
<link type='text/css' href='css/confirm.css' rel='stylesheet' media='screen' />
<script src='js/confirm.js' type='text/javascript'></script>

<div id='confirmDialog'><h2>Confirm Override</h2>

    <p>A modal dialog override of the JavaScript confirm function. Demonstrates the use of <code>onShow</code> as well as how to display a modal dialog confirmation instead of the default JavaScript confirm dialog.</p>
    <form action='download/' method='post'>
        <input type='button' name='confirm' value='Demo' class='confirm demo'/><input type='button' name='download' value='Download' class='demo'/>
        <input type='hidden' name='demo' value='confirm'/>
    </form>
</div>
<div id='confirm' style='display:none'>

    <a href='#' title='Close' class='modalCloseX simplemodal-close'>x</a>
    <div class='header'><span>Confirm</span></div>
    <p class='message'></p>
    <div class='buttons'>
        <div class='no simplemodal-close'>No</div><div class='yes'>Yes</div>
    </div>
</div>

上面我们可以清楚地看到消息传递全部在HTML中,而不是在javascript中。

如果我们再看看confirm.js的JS源代码,那么就如何初始化/触发它而言,它都是为你准备好的。

/*
 * SimpleModal Confirm Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2009 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: confirm.js 185 2009-02-09 21:51:12Z emartin24 $
 *
 */

$(document).ready(function () {
    $('#confirmDialog input.confirm, #confirmDialog a.confirm').click(function (e) {
        e.preventDefault();

        // example of calling the confirm function
        // you must use a callback function to perform the "yes" action
        confirm("Continue to the SimpleModal Project page?", function () {
            window.location.href = 'http://www.ericmmartin.com/projects/simplemodal/';
        });
    });
});

function confirm(message, callback) {
    $('#confirm').modal({
        close:false,
        position: ["20%",],
        overlayId:'confirmModalOverlay',
        containerId:'confirmModalContainer', 
        onShow: function (dialog) {
            dialog.data.find('.message').append(message);

            // if the user clicks "yes"
            dialog.data.find('.yes').click(function () {
                // call the callback
                if ($.isFunction(callback)) {
                    callback.apply();
                }
                // close the dialog
                $.modal.close();
            });
        }
    });
}

答案 1 :(得分:0)

我会推荐BlockUI,这是我使用的。使用此插件,它使用现有的<div>值来显示消息。如果触发对话框触发,您可以使用jQuery通过正常的DOM操作修改消息和链接文本,然后在应用程序需要时显示<div>

jQuery BlockUI Plugin - Dialog Example

编辑 - 根据下面的第一条评论。

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

    $('#test').click(function() { 
        $.blockUI({ message: $('#question'), css: { width: '275px' } }); 
    }); 

    $('#yes').click(function() { 
        // Remove the UI block.
        $.unblockUI(); 
        //  Or you could use window.open
        window.location = "http://www.google.com";
    }); 

    $('#no').click(function() { 
        $.unblockUI(); 
        return false; 
    }); 
}); 

答案 2 :(得分:0)

confirm.js中给出的代码包含两个方法定义。一种是名为confirm的通用方法,它将使用您想要显示的消息创建模态弹出窗口。每当要创建模态弹出窗口时,都必须使用此方法。

confirm("Are you sure you want to delete this item?", function() {
    //Here you will write the code that will handle the click of the OK button.
});

这里,第二个参数是一个函数(这几乎就像C#中的委托一样)。将会发生的是confirm函数将显示一个包含您的消息的对话框,当用户单击任何按钮时,将调用作为第二个参数传递的匿名函数。您还可以编写“普通”函数并将其作为第二个参数传递给confirm -

function callbackHandler() {
    //Here you will write the code that will handle the click of the OK button.
}

confirm("Are you sure you want to delete this item?", callbackHandler);

这段代码将调用您的函数 -

// if the user clicks "yes"
dialog.data.find('.yes').click(function () {
    // call the callback
    if ($.isFunction(callback)) { callback.apply(); }
    // close the dialog
    $.modal.close();
});