我試圖顯示一個簡單的圖像,當用戶懸停在鏈接上,即時跟隨example found here字母,但我沒有得到任何圖像顯示。引導懸停圖像顯示示例
我有以下UI,當用戶點擊查看車隊數據被異步返回,並且該示例代碼放置在腳本中返回的數據,從而:
用戶點擊查看艦隊
CODE
$('a[rel=popover]').popover({
html: true,
trigger: 'hover',
placement: 'bottom',
content: function(){return '<img src="'+$(this).data('img') + '" />';}
});
ViewFleet.php
<td> <a class="btn" rel="popover" data-img="//placehold.it/400x200"> <?php echo $row['model'] ?></a></td>
以上任何幫助或建議非常讚賞。
包括工具提示插件嗎? – monkeyinsight
@monkeyinsight我沒有...讓我快速檢查 –
@monkeyinsight對不起,如果我在這裏很愚蠢,但我不能看到工具提示插件... –