我有这个脚本,想从 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>