重定向然后在另一个页面上运行功能?

时间:2013-03-22 01:50:53

标签: php html

所以我有代码:

header("Location: ".$config['site_url']."index.php#login-box");

如果用户未登录,我尝试触发jquery登录表单的html代码:

<li><a class="log" href="#login-box"><span class="hover" style="opacity: 0;"></span></a></li> 

但是当它运行时它只是将#login-box添加到我的url结尾并且不会触发#login-box href。我知道的相当蹩脚的尝试,但任何想法?

这是jquery脚本,如何正确添加你提到的代码?

             $(document).ready(function() {
$('a.login-window2').click(function() {

            //Getting the variable's value from a link 
    var loginBox = $(this).attr('href');

    //Fade in the Popup
    $(loginBox).fadeIn(300);

    //Set the center alignment padding + border see css style
    var popMargTop = ($(loginBox).height() + 24) / 2; 
    var popMargLeft = ($(loginBox).width() + 24) / 2; 

    $(loginBox).css({ 
        'margin-top' : -popMargTop,
        'margin-left' : -popMargLeft
    });

    // Add the mask to body
    $('body').append('<div id="mask"></div>');
    $('#mask').fadeIn(300);

    return false;
});

// When clicking on the button close or the mask layer the popup closed
$('a.close, #mask').live('click', function() { 
  $('#mask , .login-popup').fadeOut(300 , function() {
    $('#mask').remove();  
}); 
return false;
});
});
             </script>

2 个答案:

答案 0 :(得分:2)

这里有一个小片段应该可以解决问题,如你所提到的那样使用jQuery:

$(function(){
    $("a.login-window2").click(function(){
        //Getting the variable's value from a link
        var loginBox = $(this).attr("href");
        //Fade in the Popup
        $(loginBox).fadeIn(300);
        //Set the center alignment padding + border see css style
        var popMargTop = ($(loginBox).height() + 24) / 2;
        var popMargLeft = ($(loginBox).width() + 24) / 2;
        $(loginBox).css({
            "margin-top" : -popMargTop,
            "margin-left" : -popMargLeft
        });
        // Add the mask to body
        $("body").append("<div id=\"mask\"></div>");
        $("#mask").fadeIn(300);
        return(false);
    });
    // When clicking on the button close or the mask layer the popup closed
    $("a.close, #mask").live("click", function(){
        $("#mask , .login-popup").fadeOut(300, function(){
            $("#mask").remove();
        });
        return(false);
    });
    // Check the hash
    var hash = $(location).attr("hash");
    if(hash == "#login-box") {
        $("a.login-window2").click();
    }
});

将其放在index.php文件中,然后从if语句中运行代码。

答案 1 :(得分:-1)

您的代码中存在错误。

使用:name="#login-box"

代替:href="#login-box"