我在我的 HTML 中像这样设置了 2 个跨度,
<span class="job_title">Job Title</span>
<span class="benefits">Benefits description</span>
我已经隐藏.benefits
使用display:none
当有人悬停时.job_title
,我想将其替换为.benefits
.
这是我目前拥有的,但它不起作用。
$('.jobs_available li a').live('hover', function(){
//alert('hello');
$(this).closest(".jobs_available li a").next('.jobtitle').hide();
$(this).next('.benefits').show();
});