弹出窗口正在从数据库中获取信息,并将其动态添加到面板中,一旦您将鼠标悬停在嵌套网格视图中的图像上,它将在该面板中显示。弹出窗口的位置也应该在图像的左侧。当您将鼠标悬停在图像上时,它会随着我的鼠标移出而迅速消失。如果有人可以提供帮助,则需要帮助,因为我一直在尝试通过使用 jquery 来实现这一点,我也是新手。
$('img.imagepopupcontext').mouseover(function () {
var cvalue = $(this).parent().parent().attr('id'); //tr.innerGridRow parent
count++;
$('#ctl00_ContentPlaceHolder1_txtkey').val(cvalue);
$('#ctl00_ContentPlaceHolder1_btnpopupclick').click();
var pos = $(this).offset();
$('#ctl00_ContentPlaceHolder1_panelshow').css({
position: "absolute",
top: (pos.top - 100) + "px",
left: (pos.left - 310) + "px"
});
$('#ctl00_ContentPlaceHolder1_panelshow').css('display', 'block');
//alert('image test over' + pos.left + "," + pos.top);
});
$('img.imagepopupcontext').mouseout(function () {
//alert(count);
count = 0;
//$('#ctl00_ContentPlaceHolder1_btnpopupclick').html('');
$('#ctl00_ContentPlaceHolder1_panelshow').hide();
//alert('image test mouse out');
});