ajax表单提交建议后的简单灯箱

发布于 2024-10-21 23:23:36 字数 1305 浏览 1 评论 0原文

我正在寻找一个灯箱,我可以在提交联系表单后使用它向用户提供反馈,我已经查看了一些示例,但我想要一些简单的建议。

的代码

   var automaticOnSubmit = cname.form.onsubmit;
    cname.form.onsubmit = function(){
    var valid = automaticOnSubmit(); 
    if(valid){

    $(".load").show();
    $.post("http://dw.inside-the-internet.com/thewp/wp-content/themes/dwtemplate/process.php",
                   $("#cform").serialize(),
                    function(data){

                    if($.trim(data) == 'sent') {


//i am looking to do something here with a simple lightbox messsage ????
                        $(".sent").hide();                   
                        $(".load").fadeOut();

                        setTimeout(function() {
                        $('.sent').fadeIn();
                        }, 3500);

                        window.setTimeout(function() {
                        window.location.href = 'http://dw.inside-the-internet.com';
                        }, 9000);

                        }else{
                             alert(data); 
                             $(".load").hide();
                        }

    });
    }

这是我看过

http://jquery.com/demo/thickbox/ 等,但它们一切似乎都太过分了,

请帮忙 返回假; }

I am looking for a lightbox that i can use to give the user feedback after my contact form has been submitted, i have looked at a few examples but i want something simple any suggesttions.

Heres my code

   var automaticOnSubmit = cname.form.onsubmit;
    cname.form.onsubmit = function(){
    var valid = automaticOnSubmit(); 
    if(valid){

    $(".load").show();
    $.post("http://dw.inside-the-internet.com/thewp/wp-content/themes/dwtemplate/process.php",
                   $("#cform").serialize(),
                    function(data){

                    if($.trim(data) == 'sent') {


//i am looking to do something here with a simple lightbox messsage ????
                        $(".sent").hide();                   
                        $(".load").fadeOut();

                        setTimeout(function() {
                        $('.sent').fadeIn();
                        }, 3500);

                        window.setTimeout(function() {
                        window.location.href = 'http://dw.inside-the-internet.com';
                        }, 9000);

                        }else{
                             alert(data); 
                             $(".load").hide();
                        }

    });
    }

i have looked at http://jquery.com/demo/thickbox/ etc

but they all seem overkill

any help please
return false;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

述情 2024-10-28 23:23:36

jqmodal 是一个非常好的简单且可自定义的 JQuery 模式框插件,他们的网站很完整示例,它的使用就像您想要的一样简单和强大:)

HTH!

Hi jqmodal is a very nice simple and customizable modal box plug in for JQuery their web site is full of examples and it use is as simple and powerful as you want :)

HTH!

不可一世的女人 2024-10-28 23:23:36

我建议使用 jQuery UI 库中的模式对话框 - 这将非常方便地满足您的需求。

I would suggest using a modal dialog from the jQuery UI library - this would meet your needs quite handily.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文