だから私はコードを持っています:
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>