【发布时间】:2015-05-13 21:02:45
【问题描述】:
有没有办法在鼠标指针处打开剑道 UI 窗口?
我可以在Telerik demo for the Window API 中看到,我可以在页面中心打开它,但我想在鼠标指针处打开它。
【问题讨论】:
标签: javascript jquery kendo-ui kendo-window
有没有办法在鼠标指针处打开剑道 UI 窗口?
我可以在Telerik demo for the Window API 中看到,我可以在页面中心打开它,但我想在鼠标指针处打开它。
【问题讨论】:
标签: javascript jquery kendo-ui kendo-window
首先,将当前鼠标位置保存在某处:
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
});
【讨论】: