Skip to content

Instantly share code, notes, and snippets.

@lizheming
Last active December 11, 2015 22:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lizheming/4670614 to your computer and use it in GitHub Desktop.
Save lizheming/4670614 to your computer and use it in GitHub Desktop.
blogmi无限翻页
<div id="page_bar">
<div id="more" page="2">载入更多</div>
<style type="text/css">
#more {font-size:14px;}
#more:hover {cursor:pointer;}
</style>
<script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript">
$('#more').click(function() {$.get('?page='+$('#more').attr('page'), function(data) {$('#content_box').append($('#content_box', data).html());$('#more').attr('page',parseInt($('#more').attr('page'))+1);});});
</script>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment