jQuery鼠标悬停显示提示信息窗体

Posted gavanwanggw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery鼠标悬停显示提示信息窗体相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>鼠标悬停显示提示信息窗体</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<style type="text/css">
.contact{width:100px;height:15px;margin:20px 0 0 50px;background-color:#CCCCCC;text-align:center;}
.us{display:none;width:300px;height:40px;padding:10px;position:relative;top:0px;left:50px;background-color:#0099FF;}
</style>
<script src="/ajaxjs/jquery-1.4.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".contact").mouseover(function(){
$(".us").show("slow");
$(".contact").mouseout(function(){
$(".us").hide("slow");
});
});
})
</script>
</head>
<body>
<div class="contact">联系我们</div>
<div class="us">提示内容。提示内容。提示内容!</div>
<div><A href="http://www.999jiujiu.com/">http://www.999jiujiu.com/</A></div>
</body>
</html>

以上是关于jQuery鼠标悬停显示提示信息窗体的主要内容,如果未能解决你的问题,请参考以下文章

鼠标悬停出现提示信息怎么做

是否可以在单选按钮悬停时调用函数并使用 jQuery 显示在工具提示中返回的信息

将 Windows 窗体工具提示锚定到鼠标

Unity实现游戏里鼠标悬停在物体处显示UI提示(介绍名称等信息)的一种方法(可配置的xml文件形式)

鼠标悬停在a标签出现提示信息

鼠标悬停在a标签出现提示信息