私はこのスクリプトを持っていて、data-content-id から情報を取得したいと考えています:
$('.hasTooltip').each(function() { // Notice the .each() loop, discussed below
$(this).qtip({
content: {
text: $('#tooltip-content-' + $(this).data('contentId')) // Grab
content using data-content-id attribite value
}
});
});
次の html コードを試しましたが、コンテンツが取得されませんでした。
<div class="pageContent" data-contentid="test">CONTENTEXAMPLE</div>