關閉按鈕,我想對qTip提示關閉按鈕 - 我有以下幾點:的jQuery qtip提示插件
<script type="text/javascript">
$(document).ready(function() {
//****** tooltips **********
$('img.help').hover(function() {
// Destroy currrent tooltip if present
if ($(this).data("qtip")) $(this).qtip("destroy");
$(this) // Set the links HTML to the current opposite corner
.qtip({
content:
{
text: 'this is the tooltip, better to use the alt attribute of the image or use html div content somewhere on the page',
title: {
text: 'This toolip title',
button: true
}
},
position: {
corner: {
tooltip: 'bottomLeft', // Use the corner...
target: 'topRight' // ...and opposite corner
}
},
show: {
solo: true,
when: false, // Don't specify a show event
ready: true // Show the tooltip when ready
},
hide: false, // Don't specify a hide event
style: {
border: {
width: 5,
radius: 10
},
padding: 10,
textAlign: 'left',
tip: true, // Give it a speech bubble tip with automatic corner detection
name: 'blue' // Style it according to the preset 'cream' style
// name: 'light' // Style it according to the preset 'cream' style
}
});
});
然而,我沒有關閉按鈕。是否應該在我的圖像文件夾中有一個圖像或創建的樣式來執行此操作? All I see in the documentation here是指示按鈕:true。我試過按鈕:'關閉',並創建一個'關閉'超鏈接,因爲它應該 - 只是無法得到密切的圖像變化工作。關於我可能在這裏錯過的任何想法?
這不是一個答案。關閉按鈕需要通過選項添加,而不是硬連接到內容。這不會做任何事情(在qTip代碼中根本沒有引用ui-icon-close)。 –