我有一个显示项目的网站,每页 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 加载内容。