我有一个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()...
如何在标题中选择链接?
答案 0 :(得分:0)
正如我所说,选择器有一个小问题:
$(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的类,它也有一个标题,并且还有一个名为”的属性。
答案 1 :(得分:0)
$('.tooltip a').click(function{
window.location = $(this).parent('.tooltip').attr('title');
});
哦,该死的......这不是父母:(