我正在使用 fullCalendar 并拥有它,以便在单击事件时生成 qTip(显示有关该元素的一堆详细信息)。我想在 qTip 中有一些基于被点击元素的链接(因此,动态链接)。这些链接将提供一种方法来编辑 fullCalendar 事件所基于的基础数据库记录。我想有一些回调方式来处理这个问题。
以下是我在 fullCalendar 中构建 qTip 的方法:
eventRender: function(event, element) {
element.qtip({
content: {
text: "Loading WO info...",
ajax: {
url: "/schedule/get-wo-details/",
type: 'GET',
data: { woID: event.woID },
dataType: 'json',
success: function(data, status) {
var content = "<table class='qtip-table'>"
content += "<table>...add content here...";
content += "<center>";
// Here are my links...
content += "<a href='#'>Unschedule</a> | ";
content += "<a id='qtip-link' href='#'>Edit Note</a>";
content += "</center>";
this.set('content.text', content);
}
}
},
show: {
event: 'click',
},
hide: {
fixed: true,
delay: 1000
},
position: {
viewport: $("#calendar"),
effect: false,
at: "left-center",
my: "right-center"
}
});
我想知道我是否可以做类似的事情:
$("#qtip-link").click(function(){
// Do some ajax magic here...
});
这个,所以我发现,行不通。我该如何实现这一目标?这似乎是一件简单的事情,但似乎无法组合一个像样的谷歌搜索查询来找到答案。
谢谢