有没有办法在鼠标指针处打开 Kendo UI 窗口?
我可以在Window API 的 Telerik 演示中看到,我可以在页面中心打开它,但我想在鼠标指针处打开它。
有没有办法在鼠标指针处打开 Kendo UI 窗口?
我可以在Window API 的 Telerik 演示中看到,我可以在页面中心打开它,但我想在鼠标指针处打开它。
首先,将当前鼠标位置保存在某处:
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
});