$(function(){ //demo示例六 通过id调取 $('#wrapper03').navbarscroll({ defaultSelect:0, scrollerWidth:6, fingerClick:1, endClickScroll:function(obj){ var catId = obj.data('id'); $('#cat_id').val(catId); $.ajax({ type : "get", url:"/index.php?m=Mobile&c=Index&a=ajaxGetMore&p=1&catId="+catId, success: function(data) { if(data){ $("#J_ItemList>ul").html(data); }else{ $("#J_ItemList>ul").html(''); $('.get_more').hide(); } } }); } }); });