0

我有一个显示项目的网站,每页 12 个项目,我可以使用 jquery 对页面进行分页。在同一页面上,我使用 qTip 实现了工具提示功能。

将鼠标悬停在项目上会出现一些信息。这一直有效,直到我使用分页器转到下一页。

分页重新加载内容。但它的结构与我刷新页面时的结构相同。

这是我的代码:

$(document).ready(function() {
 $(".cornerize").corner("5px");
 $('a#verd').live('click', exSite);
 $("a.tp").live('click', thumpsUp);
 $("a#next").click(getProgramms);
 $("a#previous").click(getProgramms);
 $("a#page").each(function() {
  $(this).click(getProgramms);
 });

 $('a.ppname[rel]').each(function(){

    $(this).qtip( {
     content : {url :$(this).attr('rel')},
     position : {
      corner : {
       tooltip : 'leftBottom',
       target : 'rightBottom'
      }
     },
     style : {
      border : {
       width : 5,
       radius : 10
      },
      padding : 10,
      textAlign : 'center',
      tip : true, 
      name : 'cream' 
     }

    });
   });

 });

html/dom 不会改变:

<a class="ppname" rel="link" href="#">...</a>

qTip 从每个 a.ppname 获取 rel 值 end 加载内容。

4

1 回答 1

3

发生这种情况是因为新元素在页面加载后加载时不会自动“qTiped”。对于常规事件,您必须使用.live()而不是.bind().

这已经解决了(从评论来看):问题与 qTip - Tips not shown because elements load after the script

正确的方法是(从那个答案):

$('a.ppname[rel]').live('mouseover', function() {
    var target = $(this);
    if (target.data('qtip')) { return false; }

    target.qtip({
        overwrite: false, // Make sure another tooltip can't overwrite this one without it being explicitly destroyed
        show: {
            ready: true // Needed to make it show on first mouseover event
        },
        content : {url :$(this).attr('rel')},
        position : {
            corner : {
                tooltip : 'leftBottom',
                target : 'rightBottom'
            }
        },
        style : {
            border : {
            width : 5,
            radius : 10
        },
        padding : 10,
        textAlign : 'center',
        tip : true, 
        name : 'cream' 
    });

    target.trigger('mouseover');
});
于 2010-12-10T11:47:45.953 回答