编辑:在此编辑之前,我要求提供涉及 CSS 的解决方案。我被告知我需要 Javascript 来完成以下任务
描述:我有一个显示成员完整个人资料的类(profile-inner)。它的背景颜色是白色。我已经悬停在 profile-inner 工作。它的背景颜色是灰色。“profile-footer”类中有“评论”链接。单击它时,它会切换类“inline-profile-comment”(展开/折叠)。
问题:“profile-inner”悬停选择整个容器,包括切换类“inline-profile-comment”。我不想要这个。我只希望在未显示“inline-profile-comment”时悬停。
网页:
<div class="profile-inner">
an entire profile
<div class="profile-footer">
<a data-toggle="collapse" data-target="#<%= profile_item.id %>_comment">
Comment</a>
<ul><li>lots of list items etc</li></ul>
<div class="inline-profile-comment">
<div id="<%= profile_item.id %>_comment" class="show collapse">
The comment form
</div></div>
</div></div>
CSS:
.profile-inner {
background-color: rgb(255, 255, 255);
}
.profile-inner:hover {
background-color: rgb(243, 243, 243);
cursor: pointer;
}
我希望我已经解释得足够好。谢谢你的帮助。