0

私は非常にきちんとしたコードである単純なモデルを使用していますが、理解できない要件が1つあります。

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

私の使用例は、ユーザーがアクションをクリックした後に「確認ポップアップ」が必要な 3 番目のオプションです。問題は、この例では、メッセージが js ファイルにハードコーディングされていることです。

このメッセージと、「はい」および「いいえ」ボタンに関連付けられたリンクを渡すことができる必要があります。

誰かが似たようなことをしたことがありますか。

4

3 に答える 3

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();
            });
        }
    });
}
于 2009-08-06T15:31:26.887 に答える
0

私が使用しているBlockUIをお勧めします。このプラグインでは、既存の<div>値を使用してメッセージを表示します。ダイアログを起動するトリガーが発生した場合は、jQueryを使用し<div>て、アプリケーションが必要とするように表示される前に、通常のDOM操作を介してメッセージとリンクテキストを変更できます。

jQueryBlockUIプラグイン-ダイアログの例

編集-以下の最初のコメントごとに。

<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; 
    }); 
}); 

于 2009-08-06T15:27:16.083 に答える
0

confirm.js で指定されたコードには、2 つのメソッド定義が含まれています。1 つは と呼ばれる一般的なメソッド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.
});

ここで、2 番目の引数は関数です (これは C# のデリゲートのように機能します)。関数がconfirmメッセージを含むダイアログを表示し、ユーザーが任意のボタンをクリックすると、2 番目の引数として渡された無名関数が呼び出されます。confirm「通常の」関数を記述して、それを 2 番目の引数として渡すこともできます。

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();
});
于 2009-08-07T04:43:50.903 に答える