0

我有一个 jquery 函数,它在元素循环中的每个元素上显示隐藏的内容。这完美地工作,但问题是当我将新元素附加到循环时它停止工作。它实际上适用于某些元素,但不适用于其他元素(奇怪的行为)。

  <script type="text/javascript">
  jQuery(document).ready(function($) {

  $(".see_all").click(function(){

  if ($(this).next().css('display') == 'none'){
  $(this).next().show();

  }
  else

  if($(this).next().is(':visible')){
  $(this).next().hide();
  }

  });
  })
  </script>

html代码

   <div class="center_container">
   <%for users in @user%>
   <div class="see_all">

   <span style="color:#808080;cursor:pointer">See All Reviews(<%=@beep_count=           (@beep.opposes.count +  @beep.neutrals.count + @beep.supports.count)%>)</span>

   </div>

   <div style="display:none;" class="hidden">

    No reviews available 

    </div>
   <%end%>

   </div>

我试过用这个解决它

   $("body").on("click", ".see_all", function() { 
   if ($(this).next().css('display') ==   'none')
    { 
    $(this).next().show(); 
    } 
    else 
    if($(this).next().is(':visible'))
    {                    
    $(this).next().hide(); 
    } 
    });

但它没有用。我在我的新 jquery 解决方案中犯了一个错误:(

请帮忙

4

1 回答 1

0

已解决....我发现我的 jquery 文件存在兼容性问题

于 2012-08-24T11:00:31.400 回答