gpt4 book ai didi

jquery - 如何使用 jQuery 将表格显示为工具提示?

转载 作者:行者123 更新时间:2023-12-01 01:59:32 25 4
gpt4 key购买 nike

我有一个填充了数据的 Gridview,其中一列包含一个链接按钮(文件列表)。如果我单击链接按钮(文件列表),将触发 .net 事件,并调用数据库来检索数据。

如何以 HTML 表格格式显示数据作为工具提示,如附图所示?我想使用 jQuery 实现工具提示。

enter image description here

最佳答案

简单的例子:

HTML

<a href="">test</a>
<table>
<tr><td>asdf</td><td>gsdi</td></tr>
<tr><td>asdf</td><td>gsdi</td></tr>
</table>

JS

$('a').hover(function(ev){
$('table').stop(true,true).fadeIn();
},function(ev){
$('table').stop(true,true).fadeOut();
}).mousemove(function(ev){
$('table').css({left:ev.layerX+10,top:ev.layerY+10});
});

CSS

table{
display:none;
position:absolute;
}
td{
border:1px solid red;
}

Fiddle demo

关于jquery - 如何使用 jQuery 将表格显示为工具提示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7654711/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com