jquery - 从第二个a-tag中选择文本

时间:2017-05-07 16:27:32

标签: jquery

我需要一个(我相信)非常简单的选择器的帮助。这是HTML:

<a href="http://localhost/index.php?action=profile;u=3" target="_blank"> 
    <img src="http://localhost/index.php?action=dlattach;attach=44;type=avatar" alt="" style="max-width: 16px; max-height: 16px; vertical-align: middle;">
</a>
<a href="http://localhost/index.php?action=profile;u=3" target="_blank" style="color:#8c121a">profilename</a>

我正在做的是捕获img-tag上的点击,然后我想获得&#34; profilename&#34;来自第二个标签的文字。

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

尝试这样 -

$(document).ready(function(){
    $('img').click(function(){
        var text = $(this).parent('a').next('a').html();
        // play with text
    });
});