0

我有一个 div,其中有一个标题(如下)。使用 JQuery 如何选择标题中的链接?

<div href="#" class="tooltip" title="<img src='<?php echo "admin/".$item['img'] ?>'
 width='70' height='70' /><a  style='float:left;margin:19px auto;' class='button 
 topmenu'>send</a>

如何使用 jquery 获取此标题中的链接,如下所示:

$(".tooltip[title][a]").click(function()...

如何选择标题中的链接?

4

2 回答 2

0

正如我所说,选择器有一个小问题:

JSFiddle:http: //jsfiddle.net/JD8sA/1/

$(document).ready(function ()
{
    $(".tooltip[title] a").click(function(){
        alert("Clicked!")

        // "this" is the anchor DOM element - the following converts it to a JQuery object
        var  $link = $(this);

        // the URL is in the href attribute on the anchor/link
        var href = $link.attr('href');
    });
});

这个选择器说“我想要一个有标题的工具提示类中的任何锚点”。

您之前的选择器说“我想要一个名为 tooltip 的类,它也有一个标题,还有一个名为 a 的属性”。

于 2013-09-25T14:35:27.170 回答
0
$('.tooltip a').click(function{
  window.location = $(this).parent('.tooltip').attr('title');
});

哦该死的......这不是父母:(

于 2013-09-25T14:43:29.030 回答