$(document).ready(function(){ $('.box-down').click(function(){ $(this).parents('.list-pic').find('p').css('height','auto'); $(this).parents('.list-pic').find('.box-up').show(); $(this).hide(); }) $('.box-up').click(function(){ $(this).parents('.list-pic').find('p').css('height','130px'); $(this).parents('.list-pic').find('.box-down').show(); $(this).hide(); }) /*$("#box-down").click(function(){ $(this).hide(); $("#box-up").show(); document.getElementById("box-show").style="height:auto"; }); $("#box-up").click(function(){ $(this).hide(); $("#box-down").show(); document.getElementById("box-show").style="height:130px"; });*/ });