1
我試圖用一個div的內容作爲提示。我的javascript代碼如下:jQuery的工具提示如預期
$(document).ready(function() {
$('.flexi').tooltip({
effect: 'slide',
tooltipSourceID:'#qwerty'
});
});
和我的HTML看起來像這樣:
<div style="position:relative;">
<p><span class="flexi">Mouse Over</span></p>
<div id="qwerty" class="tooltip flexidef">
<p>This is the custom tooltip. This is the custom tooltip.</p>
</div>
</div>
但是當我將鼠標懸停在「鼠標懸停」似乎什麼都沒有。我已經從http://swip.codylindley.com/tooltipDemo.html的例子3上面的代碼。
任何幫助表示讚賞。
沒有財產你在控制檯中的任何錯誤? –
對不起,如果我問,但您是否添加