Maison >développement back-end >tutoriel php >javascript - 为每个收藏按键添加事件时,为什么“已收藏“总不能变回”收藏“?

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

WBOY
WBOYoriginal
2016-06-06 20:28:511143parcourir

<code>//为每个收藏添加一个事件
var colength=$(".col").length;
for(var i=0;i<colength alert if></colength></code>

回复内容:

<code>//为每个收藏添加一个事件
var colength=$(".col").length;
for(var i=0;i<colength alert if></colength></code>

代码贯通了哦

<code>if($(this).text().length==3){
   $(this).css("background","white");
   $(this).text("收藏");
}
//长度编程2
if($(this).text().length==2){
       $(this).css("background","yellow");
   $(this).text("已收藏");
}
</code>

==修改下===

<code>if($(this).text().length==3){
   $(this).css("background","white");
   $(this).text("收藏");
}else if($(this).text().length==2){
       $(this).css("background","yellow");
   $(this).text("已收藏");
}</code>
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn