在哪里放置确认弹出mootools验证

时间:2013-09-04 01:17:25

标签: validation popup mootools alert confirm

我可以在哪里放置 mootools验证工具的确认弹出窗口

确认脚本:

if(确认('你有没有查看过这些信息?')){ }

mootools脚本:

<script type="text/javascript">

    window.addEvent('domready', function(){

        // The elements used.
        var myForm = document.id('leadForm'),
            myResult = document.id('myResult');

        // Labels over the inputs.
        myForm.getElements('[type=text], textarea, select' ).each(function(el){
            new OverText(el);
        });

        // Validation.
        new Form.Validator.Inline(myForm);

        // Ajax (integrates with the validator).
        new Form.Request(leadForm, myResult, {
            requestOptions: {
                'spinnerTarget': myForm
            },
            extraData: { // This is just to make this example work.
                'html': 'Form sent.'
            }
        });

    });
    </script>

我可以在哪里放置确认信息,以便在发送表单之前弹出窗口会提示用户是否答案?

1 个答案:

答案 0 :(得分:1)

试试这个:

$('myForm').addEvent('submit', function (event) {
    event.preventDefault();
    if (confirm('Have you reviewed the information?')) {            
        //code if true
    }else{ return false;}
});

这将添加一个事件监听器,以便在提交表单时,他将调用其中的函数。