博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
鼠标移过显示提示信息框(自动获取鼠标坐标)
阅读量:5160 次
发布时间:2019-06-13

本文共 1473 字,大约阅读时间需要 4 分钟。

<head runat="server">

<title></title>
<script src="jquery-1.4.4.js" type="text/javascript"></script>
<script src="jquery.sparkline.min.js" type="text/javascript"></script>
<script type="text/javascript">
var mouseX;
var mouseY;
function mouseLeave() {
$("#infoDiv").css('display', 'none');
}
function mouseOver(obj) {
mouseX = event.clientX;
mouseY = event.clientY;
$("#infoDiv").html('单击弹出详细信息!');
$("#infoDiv").css('margin-left', mouseX);
// $("#infoDiv").css('margin-top', '-80px');
infoDiv.style.display = "block";
}

function mouseOver1(obj) {

mouseX = event.clientX;
mouseY = event.clientY;
$("#infoDiv").html('单击弹出第二信息!');
$("#infoDiv").css('margin-left', mouseX);
// $("#infoDiv").css('margin-top', '-80px');
infoDiv.style.display = "block";
}
</script>
<script type="text/javascript">
$(document).ready(function () {
$(".cc").sparkline('html', { 'width': 160 });
})
</script>
</head>
<body>
<form id="form1" runat="server">
<br />
<br />
<br />
<br />
<br />
<br />
<div style="margin-left:500px; width:270px;">
<table><tr><td οnmοuseοver="mouseOver1()" οnmοuseοut="mouseLeave()">单击一:</td><td></td><td><a class="cc" οnmοuseοver="mouseOver()" οnmοuseοut="mouseLeave()">1,24,45,15,6,56,7,15,20,14,1,0,15,8</a></td></tr></table></div>
<div id="infoDiv" style="display: none; position: absolute; margin-top:-80px; width: 180px; height: 25px; background-color: #F1F19B;"></div>
</form>
</body>
</html>

转载于:https://www.cnblogs.com/wdw31210/archive/2012/03/31/2426926.html

你可能感兴趣的文章
MeteoInfoLab脚本示例:计算垂直螺旋度
查看>>
Visual Studio的Debugger Visualizers
查看>>
《大教堂与集市》读后感
查看>>
[RabbitMQ]Windows环境下rabbitmqclt(Command Line Tools)出现Erlang distribution failed错误的解决方法...
查看>>
创业这三年@各种奇遇
查看>>
正确配置调试world wind on vs2008
查看>>
纯css实现3D动画
查看>>
几种按键消抖方案的verilog描述
查看>>
四则运算 Day2
查看>>
使用SpringBoot生成项目
查看>>
C++ __super关键词用法
查看>>
FTP上传及下载
查看>>
作业5 四则运算 测试与封装 5.1
查看>>
实验7
查看>>
双系统更改启动顺序
查看>>
用参数较少的函数替换参数较多的函数
查看>>
【转】函数中的形参问题(指针形参、引用形参、二重指针作为形参)
查看>>
location对象查询字符串参数
查看>>
Python基础
查看>>
开发中用到的工具
查看>>