以这段代码为例:
$('.photo').hover(
function() {
//display heading and caption
$(this).children('div:first').stop(true,false).animate({top:0},{duration:200, easing: 'easeOutQuart'});
$(this).children('div:last').stop(true,false).animate({bottom:0},{duration:200, easing: 'easeOutQuart'})
})
假设我想知道用这一行选择了哪个元素:
$(this).children('div:first')
是否有可能以某种方式提醒目标元素?我试过:
something = $(this).children('div:first').val();
alert (something);
或者
something = $(this).children('div:first');
alert (something);
在第一个示例中,我得到空白警报。使用第二个 - Objext 对象。
问候,