1

我使用easyTooltip:http ://pastebin.com/UjaDyE27

它工作正常。HTML 如下所示:

<ELEMENT class="tip">Something</ELEMENT>
<div class="tipContent">ToolTip Content</div>

这很好用,但是当我用 ajax 加载 html 时 - 它不起作用!问题是什么?

谢谢,对不起我的英语

4

1 回答 1

2

加载ajax内容后可以请这个方法吗

         $(".tip").each(function() {
                $(this).easyTooltip({
                        content: $(this).next('.tipContent').html()
                });
         });
于 2013-09-23T13:17:19.120 回答