嗨是否有任何针对php ajax标签的参考/示例,并在每个标签中加载更多功能?假设我们有2个选项卡,当我们点击每个选项卡时,它将只显示选定的结果数,直到我们在每个结果的末尾点击加载更多按钮。谢谢。我当前的代码似乎效果不好,当我单击每个选项卡时它正确显示结果但当我再次单击选项卡时它会加载更多数据。这是我当前的代码:
<li data-tab-id="self" class="tab selected"><a href="#">Near You</a><span class="unread-count hidden" style="display: none;"></span></li>
<li data-section-id="user_feed" data-component-bound="true">
<ul class="module-list">
<!-- USER ACTIVITY JSON -->
</ul>
<a class="ybtn ybtn-primary ybtn-large more-wishlist" href="#" onclick="getRecentActivityClick(event)">
<span data-component-bound="true" class="loading-msg user_feed">See more recent activity</span>
</a>
</li>
<script type="text/javascript">
var totalRecords = '<?= $this->totalRecords?>';
$(document).ready(function(){
getRecentActivity(totalRecords);
});
$(".hd-ui-activity li a").click(function(e) {
e.preventDefault();
var tabid = $(this).parent().attr('data-tab-id');
if(tabid == "self"){
getRecentActivity(totalRecords);
}
});
function getRecentActivityClick(event)
{
if (event != null){
disabledEventPreventDefault(event);
}
getRecentActivity(totalRecords);
}
home.js:
function getRecentActivity(totalRecords)
{
$.ajax({
url:baseUrl + "activity/activityfeed",
data:{'total':totalRecordsView},
dataType:"json",
type:"POST",
success:function(data){
var activityHtml = '<p>Hello</p>';
$('#activity-feed li[data-section-id=near_you] .module-list').append(activityHtml);
}
});
}
更新: JSFIDDLE:http://jsfiddle.net/zlippr/5YkWw/1/
答案 0 :(得分:0)
我从你的问题中理解了...我认为你正在使用更多的数据,因为你正在使用.. append()
..
使用html()
append()将参数指定的内容插入到匹配元素集中每个元素的末尾。
html()用于设置元素的内容,该元素中的任何内容都被新内容完全替换。
试试这个
替换
$('#activity-feed li[data-section-id=near_you] .module-list').append(activityHtml);
与
$('#activity-feed li[data-section-id=near_you] .module-list').html(activityHtml); //html()
答案 1 :(得分:0)
你可以这样做:
$('#activity-feed li[data-section-id=near_you] .module-list').append(activityHtml);
// here you are appending the fulldata just apply some css here
以这种方式使用css:
$('#activity-feed li[data-section-id=near_you] .module-list')
.css({'height':'300px','overflow':'hidden'})
.append(activityHtml);
然后点击loadmore:
$('your load more button').toggle(function(){
$('#activity-feed li[data-section-id=near_you] .module-list')
.css({'height':'auto','overflow':'auto'})
},function(){
$('#activity-feed li[data-section-id=near_you] .module-list')
.css({'height':'300px','overflow':'hidden'});
});