我有一个包含链接的列表,所以,如果我悬停一个链接,我想要包含该链接的背景颜色改变它的颜色,该类是' .secctabla' 。
我试图这样做(使用与jQuery集成的velocity.js)并且它不起作用(我也使用parent()并且它也不起作用):< / p>
<tr class="secctabla">
<td>
<h3 class="linkCursos"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php
$argumentos = array(
//default to current post
'post' => 0,
'before' => '<p class=\"meta\">',
//this is the default
'sep' => ' y ',
'after' => '<p class=\"meta\">',
//this is the default
'template' => '%s: %l.'
);
?>
<?php the_taxonomies($argumentos); ?>
</td>
<td>
<?php $desc = get_post_custom_values("descripcion");
if (isset($desc[0])) { ?>
<p class="small"><?php echo $desc[0]; ?></p>
<?php } ?>
</td>
</tr>
$('.linkCursos a').hover(function() {
$(this).closest("secctabla").velocity({background: '#000000'});
})
答案 0 :(得分:0)
$('.linkCursos a').hover(function() {
$(this).closest(".secctabla").velocity({rotateZ: "180deg"});
})
我没有正确指定类。这很好用:))