我試圖顯示qtip以響應用戶在fullcalendar中每天點擊一次。QTip在錯誤位置顯示
這可以在Chrome瀏覽器中正常工作,但Firefox和Internet Explorer中的qtip會在錯誤的位置打開。
這可以通過點擊不同日期看到,有時qtip將打開在錯誤的位置,其他時間將打開,然後立即關閉。
當不使用$(this).qtip('destroy')
並且定義了solo: false
時,可以觀察到此行爲。
如果您在同一單元格內移動鼠標並再次單擊正確位置的qtip顯示器,它似乎會在您首次單擊單元格內部時發生。然後,該單元格繼續正常工作,直到頁面刷新。
完整的例子可在https://gist.github.com/1467702
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="fullcalendar.css">
<link rel="stylesheet" type="text/css" href="jquery.qtip.css">
</head>
<body>
<div id="calendar"></div>
<script type="text/javascript" src="jquery-1.6.3.js"></script>
<script type="text/javascript" src="jquery.qtip.js"></script>
<script type="text/javascript" src="fullcalendar.js"></script>
<script type="text/javascript">
$(function() {
$('#calendar').fullCalendar({
dayClick: dayclick
});
});
function dayclick(date, allday, jsevent) {
var randomContent = new Date().valueOf().toString();
$(this).qtip({
overwrite: true,
content: {
text: randomContent,
title: {
text: 'Testing',
button: 'Close'
}
},
show: {
solo: true,
event: 'click',
ready: true
},
style: {
tip: true
},
position: {
viewport: $(window),
target: 'mouse',
my: 'bottom center',
at: 'top center',
adjust: {
mouse: false
}
},
hide: {
fixed: true,
delay: 300
},
events: {
hide: function() {
$(this).qtip('destroy');
}
}
}, jsevent);
}
</script>
</body>
</html>