<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 ></div>
</form>
</body>
</html>

相关文章:

  • 2021-09-10
  • 2021-11-11
  • 2021-09-27
  • 2021-11-19
  • 2021-11-11
  • 2022-12-23
  • 2021-10-21
猜你喜欢
  • 2021-09-15
  • 2022-12-23
  • 2021-10-19
  • 2018-01-05
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案