我需要从工具提示内的 data-content-id 获取内容。由于某种原因,它不会抓取内容并将其拉入内部。
这是代码:
// Create the tooltips only when document ready
$(document).ready(function()
{
/// Grab all elements with the class "hasTooltip"
$('.hasTooltip').each(function() { // Notice the .each() loop, discussed below
$(this).qtip({
content: {
text: $('#tooltip-content-' + $(this).find('[data-contentid]').data('contentid')) // Grab content using data-content-id attribite value
}
});
});
});
为了更好地理解这里是一个小提琴: http: //jsfiddle.net/L6yq3/465/你可以看到,我无法在工具提示中获得“CONTENTEXAMPLE”。