最新回答 / Alice_hhu
Handlebars.registerHelper("isfirst",function(value,option){if (value == 0) {return option.fn(this);}});检查一哈这段代码有木有写错,会不会是helper的名字"isfirst"拼错了
2017-08-21
分页样式2
.pag li.cur{
background-color: #FFEDB2;
}
.pag li.clickable{
background-color: #D6F2FF;
}
.pag li.clickable:hover{
cursor: pointer;
background-color: #B9CBF7;
}
.pag li.cur{
background-color: #FFEDB2;
}
.pag li.clickable{
background-color: #D6F2FF;
}
.pag li.clickable:hover{
cursor: pointer;
background-color: #B9CBF7;
}
2017-08-20
分页样式1
.pag ul{
margin-top: 60px;
margin-bottom: 60px;
text-align: center;
}
.pag li{
width: 40px;
height: 40px;
line-height: 40px;
display: inline-block;
border-radius: 50%;
background-color: #F0F0F0;
}
.pag ul{
margin-top: 60px;
margin-bottom: 60px;
text-align: center;
}
.pag li{
width: 40px;
height: 40px;
line-height: 40px;
display: inline-block;
border-radius: 50%;
background-color: #F0F0F0;
}
2017-08-20
这段在控制台上提示报错,Handlebars未定义
var t = $("#template").html();
console.log(t);
// f是handlebars编译之后生成的函数
var f =Handlebars.compile(t);
console.log(f);
// 参数打他传入之后的HTML的字符串
var h = f(data);
console.log(h);
$("#card3").html("woshi ");
var t = $("#template").html();
console.log(t);
// f是handlebars编译之后生成的函数
var f =Handlebars.compile(t);
console.log(f);
// 参数打他传入之后的HTML的字符串
var h = f(data);
console.log(h);
$("#card3").html("woshi ");
2017-08-18