如何在鼠标指针处打开Kendo窗口

时间:2015-05-13 21:02:45

标签: javascript jquery kendo-ui kendo-window

有没有办法在鼠标指针处打开Kendo UI窗口?

我可以在Telerik demo for the Window API中看到,我可以在页面中心打开它,但我想用鼠标指针打开它。

1 个答案:

答案 0 :(得分:3)

首先,将当前鼠标位置保存在某处:

var currentMousePos = { x: -1, y: -1 };
$(document).mousemove(function(event) {
    currentMousePos.x = event.pageX;
    currentMousePos.y = event.pageY;
});

然后,打开你的剑道窗口时:

$("#window").closest(".k-window").css({
    top: currentMousePos.y,
    left: currentMousePos.x
});