2014-02-21 32 views

回答

0

我想爲我的下面,它工作正常。可能是你可以試試這個

<div class="divSearchShowHide" ><a id="show" href="#" style="text-decoration:none">Show</a></div> 
<div style="display:none;" class="divSearchContent" id="orderHistoryView" > <p>description if need can be put here</p></div> 

的javascript:

<script type="text/javascript"> 
$(document).ready(function() { 
    $('.classShow').click(function() { 
     $(this).parent().next('.divSearchContent').slideToggle('slow'); 
     if ($(this).text() == 'Show') { 
      $(this).text('Hide'); 
     } else { 
      $(this).text('Show'); 
     } 
    }); 

}); 
</script> 
+0

不是我一直在尋找的花花公子,請查看我的例子,以更好地瞭解需求。謝謝 – edward