1

尝试通过 $(this).parent() 使用 javascript 获取 div 的 id 名称。

Javascript代码如下:

$(function() {
        $('a.close').click(function() {
            $(this).parent().fadeOut(1500);
            $.cookie($(this).attr('id'), 'true', { expires: null});
            alert($.cookie($(this).attr('id')));
            return false;
        });
        if($.cookie('hidden') == 'true'){
            $('#errororganinfoinchide-this').hide();
        }
    });

试图从下面的 HTML 中获取 id errororganinfoinchide-this。尝试这种方式,因为该 id 可能因页面而异。

        <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>

非常感谢所有帮助。谢谢。

4

2 回答 2

2

你有没有尝试过这样的事情:

 $(this).parent().attr('id')
于 2013-01-14T03:57:03.547 回答
1

你也可以这样做:

$(this).parent("aside.warning").attr("id");

或者

$(this).parent(".warning").attr("id");
于 2013-01-14T04:08:45.830 回答