我创建了一个 ID 为“tt-content”的 div,当我将鼠标悬停在链接上时,我希望 div 和其中包含的所有 html 显示为工具提示。我使用了 jquery bodyhandler,但我的代码仍然无法正常工作。我最近才开始编码,所以我不知道这是我的语法问题还是代码完全错误。先感谢您。
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" >
$(document).ready(function(){
$("a").hover(function () {
$("a").tooltip({
bodyHandler: function() {
return $("#tt-content").html();
},
showURL: false
});
});
});
</script>
</head>
<body>
<a href="#">Display Tooltip</a>
<div id= "tt-content" style="width:250px" >
<p>HTML TO BE DISPLAYED IN THE TOOLTIP.</p>
<p>EVEN MORE HTML</P>
</div>
</body>
</html>