0

一部のJSで問題が発生し、ページが読み込まれるとすぐにCookieが設定されますが、クリックしてボックスを閉じたときにのみ設定されるはずです。

どんな助けでもいただければ幸いです。以下のコード:

<!doctype html>
<html lang="en">
<head>
    <title></title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    <script type="text/javascript" src="http://resources.site.co.nz/scripts/jquerycookie.js"></script>
    <script type="text/javascript">
    $(function() {
        $('a.close').click(function() {
            $(this).parent().fadeOut(1500);
            $.cookie('hidden', 'true', { expires: null});
            alert($.cookie('hidden'));
            return false;
        });
        if($.cookie('hidden','true')){
            $('#errororganinfoinchide-this').hide();
        }
    });
    </script>
</head>
<body>
    <div id='boxes'>
        <aside class='warning' id='errororganinfoinchide-this'>
            <a href='#errororganinfoinchide-this' class='close'><img src='http://resources.site.co.nz/backgrounds/close.png' /></a>
            <img src='http://resources.site.co.nz/backgrounds/icon_warning.png' class='messageimg' />
            <h4>Warning - Organisation Info</h4>
            <p>Sorry, there was an error opening the "Organisation Info" Box. Please try again later.</p>
        </aside>
    </div>
</body>

4

1 に答える 1

2

行 " if($.cookie('hidden','true')){" は、Cookie を読み取る代わりに設定していませんか?

代わりに、おそらくこのようなものになるはずです...

if($.cookie('hidden') == 'true'){

于 2013-01-14T02:42:02.600 に答える