我想在联系人标题文本上使用悬停。我希望显示的内容也跟随光标。我用悬停做了一个jsfiddle,但我不知道为什么不起作用......
HTML
<div class="toggleSwitch_j">
<a href="#"> Contact Title </a>
<div class="SignatureBox">Text Displayed</div>
</div>
css
.SignatureBox {
display: none;
width: 200px;
height: 30px;
background-color: #F9F7F7;
border: 1px solid #e4e4e4;
}
JS
$(document).ready(function() {
$('.SignatureBox').hide();
$('.toggleSwitch_j').hover(function () {
$(this).children('.SignatureBox').show();
}, function () {
$(this).children('.SignatureBox').hide();
});
});