2015-06-09 53 views
-4

下面的代碼只能工作一次。我不知道如何執行連續時間。如何循環程序

jQuery(document).ready(function() { 
     jQuery(".checkboxes").hide(); 
     //toggle the componenet with class msg_body 
     jQuery(".Select").click(function() { 
      jQuery(this).next(".checkboxes").slideToggle(500); 
      if ($(".select").text() == "+") { 
       alert('hi'); 
       $(".select").html() == "-" 
      } 
      else { 
       $(".select").text() == "+"; 
      } 
      return false; 
     }); 
    }); 

任何幫助將不勝感激。

+0

向我們展示你的HTML也。 –

+0

好的,我將添加我的htmlcode –

+0

你正在得到什麼錯誤? ....'imageup'沒有定義? – Razack

回答

0

考慮 「.imgContainer」 是一個<img>標籤:

$(function() { 
      $(".checkboxes").hide(); 
      //toggle the componenet with class msg_body 
      $(".select").click(function() { 
       $(this).next(".checkboxes").slideToggle(500); 
       if ($(".select").text() == "+") 
        $(".imgContainer").attr("src", "/images/logo1.png"); 
       else 
        $(".imgContainer").attr("src", "/images/logo2.png"); 
       return false; 
      }); 
     }); 
+0

我想替換圖像而不是opertor –

+0

已編輯。我不確定你想要什麼和/或需要什麼。你希望圖像在用戶點擊「.Select」時改變,對吧? –