gpt4 book ai didi

c# - 鼠标悬停在日历控件上时的 Jquery 弹出窗口

转载 作者:太空宇宙 更新时间:2023-11-03 16:28:37 25 4
gpt4 key购买 nike

我正在使用 ASP.NET 的日历控件。当我将鼠标悬停在日历控件中的特定日期上时,我需要显示一个弹出窗体。此弹出窗口应显示来自数据库的数据。

有人对此有解决方案吗?

最佳答案

你应该有一个空的 div:

<div id="popup"></div>

然后将事件绑定(bind)到日历元素:

('li.calendar').hover(function(){
//make an ajax call and populate the popup div with the data
//easiest method is jquery.load(), but if you need more control use jquery.ajax();
$("popup").load('path/to/page.asp',data,function(){
$("popup").show();
});


});

jquery.load()jquery.ajax()

关于c# - 鼠标悬停在日历控件上时的 Jquery 弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11609885/

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