1

我有一个页面链接,该页面调用“性感警报框”脚本来弹出一条消息,询问用户是否同意条款和条件,并带有“我同意”和“取消”选项。

我已经做了这么多,但现在我需要“我同意”选项将它们发送到新页面。(“取消”返回用户当前页面。)

有什么关系document.location.href

我正在使用 mootools 框架。

性感警报框 1.2 mootools & jQuery

这是代码:

<a href="#" 
    onclick="Sexy.confirm('Do you agree to the terms and conditions?', {
        textBoxBtnOk: 'I Agree', // goes to www.newpage.com
        textBoxBtnCancel: 'Cancel' // return to current page    
    });">Link</a>
4

2 回答 2

2

标准的内置 javascriptconfirm函数将返回 true 或 false,具体取决于按下的按钮(这是一个同步动作),但这个Sexy.confirm插件看起来像是将通过回调函数返回其选择的东西(它将是一个异步动作)。

例如,

function doConfirm() {
    Sexy.confirm('Do you agree to the terms and conditions?', {
        textBoxBtnOk: 'I Agree',
        textBoxBtnCancel: 'Cancel',
        onComplete: function(returnvalue) {
            // here is where you act, after user has made a choice...
            if (returnvalue) {
                //alert ("pressed OK");
                window.location.href = '/page1/';
            }
            else {
                //alert("pressed Cancel");
                window.location.href = '/page2/';
            }
        }
    });
    return false; // this is to cancel the native click event
}

然后你可以让你的链接标签更好一点,

<a href="#" onclick="return doConfirm();">Link</a>

祝你好运!

于 2009-09-03T04:26:36.997 回答
1

使用 Mootools:

用于 HTML

<a class="confirm" href="www.google.fr">Google Fr</a>
<a class="confirm" href="www.google.be">Google Be</a>

和 JavaScript

window.addEvent('domready', function () {
    $$('a.confirm').each(function (el) {
        el.addEvent('click', function (e) {
            e.stop();
            Sexy.confirm('<h1>Etes-vous sur de vouloir suivre ce lien ?</h1>',{ 
                onComplete: function(returnvalue) {
                    if (returnvalue) {
                        window.location.href = el.get('href');
                    }
                },
                textBoxBtnOk: 'Oui',
                textBoxBtnCancel: 'Non'
            });
        });
    });
});
于 2011-02-11T02:42:43.647 回答