我想使用jQuery UI中的tooltip函数。当我使用
$('.notice').tooltip();
它不起作用,没有任何反应。
我的HTML看起来像这样:
<i title="hello world" id="1" class="fa fa-comment-o notice comment_form"></i>
这很奇怪,因为它在我使用
时起作用$(document).tooltip();
我的HTML代码来自动态Ajax请求。这可能是问题吗?如果是这样,我该如何解决?
答案 0 :(得分:0)
如果将它包装在document.ready中,它是否有效? e.g。
$(document).ready(function(){
$('.notice').tooltip();
});
我怀疑它的更多关于你的jquery / dom没有按时加载?使用第一个代码时,您是否在控制台中看到任何错误?
$('.notice').tooltip();
答案 1 :(得分:0)
也许这...
$(document).tooltip({
items: ".notice",
content: function () {
return $(this).attr("title");
}
});