欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

javascript - 为每个收藏按键添加事件时,为什么“已收藏“总不能变回”收藏“?

程序员文章站 2022-05-06 14:58:01
...
//为每个收藏添加一个事件
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("已收藏");
}