1

http://github.com/voronianski/jquery.avgrund.js/を使用しています

私のjs呼び出しは次のとおりです。

$('.reserve_button').avgrund({ enableStackAnimation: false, onBlurContainer: '.content', holderClass: 'custom', template: $(".rezerve-modal").html() });

私のポップアップコンテンツは次のとおりです。

<div class="avgrund-overlay"></div>
<div class="rezerve-modal">
    <div style="background-color: #CEEEF2; padding: 5px 10px; height: 100%;">
        some content
        <span class="modal-btn hoverU cancel">Cancel</span>
    </div>
</div>

私が欲しいのは、キャンセルをクリックすると、ポップアップが閉じられることです。

4

2 に答える 2

2

そのためのさまざまな属性があります。

showClose: false, // switch to 'true' for enabling close button
showCloseText: '', // type your text for close button
closeByEscape: true, // enables closing popup by 'Esc'..
closeByDocument: true, // ..and by clicking document itself
于 2013-05-23T09:06:13.503 に答える