时间:2021-07-01 10:21:17 帮助过:33人阅读
//为每个收藏添加一个事件
var colength=$(".col").length;
for(var i=0;i
//为每个收藏添加一个事件
var colength=$(".col").length;
for(var i=0;i
代码贯通了哦
if($(this).text().length==3){
$(this).css("background","white");
$(this).text("收藏");
}
//长度编程2
if($(this).text().length==2){
$(this).css("background","yellow");
$(this).text("已收藏");
}
==修改下===
if($(this).text().length==3){
$(this).css("background","white");
$(this).text("收藏");
}else if($(this).text().length==2){
$(this).css("background","yellow");
$(this).text("已收藏");
}