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();
        }
    });

iderrororganinfoinchideを取得しようとしています-これは以下のHTMLからです。その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 に答える