0

我希望在某个页面上弹出一个登录表单。

<a id="test" href="#login_form">Click me</a>

    <div style="display:none">
            <form id="login_form" method="post" action="parse_login.php">
                <p id="login_error">Please login</p>

            <table>
         <tr><td><input type='text' name='username' placeholder="username" style="width: 250px;" /><p /></tr></td>
                                <tr><td><input type='password' name='password' placeholder="password" style="width: 250px;" /><p /></tr></td>
                            </table>
                            <div class="logginbutton"><button type='submit' name='submit' class="button-small">Login</button>
                        </form>
                    </div>

和JS如下:

$("#test").fancybox({
    'scrolling'     : 'no',
    'titleShow'     : false,
    'onClosed'      : function() {
        $("#login_error").hide();
    }
});


$("#login_form").bind("submit", function() {

    if ($("#username").val().length < 1 || $("#password").val().length < 1) {
        $("#login_error").show();
        $.fancybox.resize();
        return false;
    }

    $.fancybox.showActivity();


    return false;
});

我想要的是,表单应该在页面页面加载而不是点击时弹出,并且它应该保持在那里直到访问者登录,所以需要摆脱关闭标志。

看看小提琴

4

1 回答 1

0

尝试

jQuery(document).ready(function ($) {
    $.fancybox({
        href: "#login_form",
        modal: true,
        scrolling : 'no',
        titleShow: false,
        onClosed : function() {
            $("#login_error").hide();
        }
    });
});

它将在页面加载时启动 fancybox。

注意modal: true将阻止关闭fancybox并且不会显示关闭按钮(转义或在框外单击也不会关闭它)如果您在框内放置关闭按钮(绑定到$.fancyblox.close()方法),表单将关闭或如果表单通过验证并提交。

return false在这种情况下,您应该从此脚本中删除

$("#login_form").bind("submit", function() {  
    if ($("#username").val().length < 1 || $("#password").val().length < 1) {
        $("#login_error").show();
        $.fancybox.resize();
        return false; // prevents the form of being submitted if validation fails
    }    

    // $.fancybox.showActivity(); // you don't need this unless you are going to display the results in fancybox

    // return false; // <== this will prevent the form of being submitted, regardless it passes the validation
});

请注意,这是针对 fancybox v1.3.4 的(因为您在帖子中使用的 API 选项,我假设您使用的是该版本)

编辑:好的,我为你做了,见JSFIDDLE

我什至纠正了你的小 html 错误,比如

<a id="test" href="#login_form">Click me</div>
于 2013-10-16T18:21:32.517 回答