发布网友 发布时间:2022-04-23 09:05
共1个回答
热心网友 时间:2023-09-17 07:45
看代码没必要全看懂
知道他在作什么就可以了,开发的时候现查现用来得急
比如前几行
var
page
=
1;
//第一页
var
getRecord
=
template.compile($("#recordTemplate").html());
//
获取这个id
为“recordTemplate”的html的代码
var
News
=
template.compile($("#News").html());
//
获取这个id
为“News”的html的代码
loadPage(1);
执行这个函数,看他名字猜都猜出来了,加载页面(第一页)
function
loadPage(page)
{
//具体函数