如何访问事件的坐标

时间:2015-02-25 10:50:34

标签: c# jquery model-view-controller fullcalendar

我想让我的弹出窗口在整个日历中对事件眨眼。只要鼠标在事件上。所以我需要阅读被点击的事件的坐标。

如何在该坐标处修复任何<div></div>。 在我的完整callendar代码是鼠标结束,

eventMouseover: function (event, jsEvent, view) {
     $("#descriptionbox").html(event.title  +"        " +"C-ordinates::" ).show();
},
eventMouseout: function (event, jsEvent, view) { 
    $("#descriptionbox").hide(); 
},

对于要在点击的事件协调附近显示的div。

 <div id="descriptionbox" style="position:absolute; border-radius:5%; margin-left:1%; color:white; margin-top:2%; z-index:100; background-color:dodgerblue;padding:1%">Description</div>

1 个答案:

答案 0 :(得分:1)

您需要从jsEvent参数获取坐标。

您可以从documentation

中阅读
  

jsEvent使用低级信息保存本机JavaScript事件   例如鼠标坐标。