jquerylayui 페이징 제어는 프로젝트 개발 단계에서 자주 사용됩니다. 이 기사에서는 jQuerylayui 페이징 제어의 사용을 소개합니다. 관심 있는 친구들이 꼭 살펴보시기 바랍니다. .
$.getJSON()
$.getJSON( url [, data ] [, success(data, textStatus, jqXHR) ] )
url은 json 데이터의 주소를 나타내는 필수 매개변수입니다.
data는 데이터를 요청할 때 데이터 매개변수를 보내는 데 사용되는 선택적 매개변수입니다. 성공은 매개변수화 가능하며, 이는 요청된 데이터를 처리하는 데 사용되는 콜백 함수입니다.
//内容页面 <br> <p id="notice_p"></p><br> //分页控件 <p id="notice_pages"></p> <script> var roolurl = "http://" + window.location.host; var urlAshx = roolurl + "/aa/Ashx/NoticeInfo.ashx"; //var pages = 0; //获取分页好的公告内容 function GetNoticeList(curr, cid) { $.getJSON(urlAshx, {//参数 action: "notice_action", courseid: cid, page: curr || 1,//向服务端传的参数,此处只是演示 nums: 3//每页显示的条数 }, function (datajson) {//成功执行的方法 if (datajson != null) { var norice_content = ""; //alert(datajson.pages); $(datajson.rows).each(function (n, Row) { norice_content += " <p class='panel panel-default'>"; norice_content += " <p class='panel-heading'>"; norice_content += " <h3 class='panel-title'>"; norice_content += Row.CreateDate; norice_content += " "; norice_content += Row.Creater; norice_content += " </h3>"; norice_content += " </p>"; norice_content += " <p class='panel-body'>"; norice_content += Row.NoticeContent; norice_content += " </p>"; norice_content += " </p>"; }); $('#notice_p').html(norice_content); //alert(11); //调用分页 laypage({ cont: 'notice_pages',//容器。值支持id名、原生dom对象,jquery对象。【如该容器为】:<p id="page1"></p> pages: datajson.pages,//总页数 groups: 5, //连续显示分页数 skip: false, //是否开启跳页 skin: '#AF0000', curr: curr || 1, //当前页, jump: function (obj, first) {//触发分页后的回调 if (!first) {//点击跳页触发函数自身,并传递当前页:obj.curr GetNoticeList(obj.curr, cid); } } }) } }); } $(document).ready(function () { GetNoticeList(0, '<%=_courseid%>') }); </script>
위 내용은 jQuerylayui 페이징 제어를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!