如果没有找到内容,我需要隐藏我的工具提示。尝试使其工作的方法,但似乎无济于事。我正在使用较旧的qtip版本,即jquery.qtip-1.0.0-rc3.js。我尝试使用
if (!html) {
$(this).remove();
}
有效。它仅显示带有内容的工具提示的图像,但是当我将鼠标悬停时,没有弹出窗口。以下是我完整的工具提示代码。请帮我。我在这里想念什么?
$(document).ready(function () {
$(".form-field").each(function () {
var optionLabel = $(this).children('.form-label');
var optionLabelText = optionLabel.text();
if ($("img", this).length < 1) {
$(this).children('.form-label.form-label--alternate.form-label--inlineSmall').append(" <div class='help_div' style='float:right;'><img src='/content/help.png' alt='" + optionLabelText + "'/></div>");
}
});
$('.help_div').each(function () {
var slug = slugify($("img", this).prop('alt'));
console.log(slug);
var html = $("#" + slug).html();
var titleq = $("img", this).prop('alt').replace(/[^-a-zA-Z0-9,&\s]+/ig, '');
titleq = "<strong style='font-size: 12px'>" + titleq + "</strong><br/>"
if (!html) html = "Description not available yet."
$(this).qtip({
content: html,
position: {
corner: {
tooltip: 'topRight',
target: 'bottomLeft'
}
},
style: {
tip: {
corner: 'rightTop',
color: '#6699CC',
size: {
x: 15,
y: 9
}
},
background: '#6699CC',
color: '#FFFFFF',
border: {
color: '#6699CC',
}
}
});
});
function slugify(text) {
text = text.replace(/[^-a-zA-Z0-9,&\s]+/ig, '');
text = text.replace(/-/gi, "_");
text = text.replace(/^\s+|\s+$/g, "");
text = text.replace(/\s/gi, "-");
text = text.toLowerCase();
return text;
}
});
答案 0 :(得分:1)
添加$(this).remove()
时,需要避免执行qtip
。删除元素后,尝试添加回报:
if (!html) {
$(this).remove();
return;
}
这是整个示例:
$(document).ready(function() {
$(".form-field").each(function() {
var optionLabel = $(this).children('.form-label');
var optionLabelText = optionLabel.text();
if($("img", this).length < 1) {
$(this).children('.form-label.form-label--alternate.form-label--inlineSmall').append(" <div class='help_div' style='float:right;'><img src='/content/help.png' alt='"+optionLabelText+"'/></div>");
}
});
$('.help_div').each(function() {
var slug = slugify($("img", this).prop('alt'));
var html = $("#" + slug).html();
var titleq = $("img", this).prop('alt').replace(/[^-a-zA-Z0-9,&\s]+/ig, '');
titleq = "<strong style='font-size: 12px'>" + titleq + "</strong><br/>"
if (!html) {
$(this).remove();
return;
}
$(this).qtip({
content: html,
position: {
corner: {
tooltip: 'topRight',
target: 'bottomLeft'
}
},
style: {
tip: {
corner: 'rightTop',
color: '#6699CC',
size: {
x: 15,
y: 9
}
},
background: '#6699CC',
color: '#FFFFFF',
border: {
color: '#6699CC',
}
}
});
});
function slugify(text) {
text = text.replace(/[^-a-zA-Z0-9,&\s]+/ig, '');
text = text.replace(/-/gi, "_");
text = text.replace(/^\s+|\s+$/g, "");
text = text.replace(/\s/gi, "-");
text = text.toLowerCase();
return text;
}
});
答案 1 :(得分:0)
该应该有效,但是我注意到,当我在您的网站的控制台中运行它时,它会返回Uncaught TypeError: Cannot read property 'jquery' of null
由于您使用的是旧版本的qtip插件,因此您似乎遇到了这种情况:
https://github.com/qTip2/qTip2/issues/275
在html变量上调用remove实质上是将空内容传递到.qtip函数中。我建议尝试解决该GitHub问题中建议的修复程序,或使用更高版本的qtip插件。