我已经为每个div容器分配了一个唯一的id和一些javascript。所以我可以点击显示/隐藏我正在查看的页面上的每个食谱,但是我想在打开一个新的时候通过JavaScript关闭任何已经打开的div。我已经包含了一些提取的代码,而不是粘贴整个文档,因为它很大,下面也是实时网址:
*更新 - <?=$counter_recipes;?>
只是产生一个唯一的号码。 $ i ++方法以及页面上的所有内容。
实时网址 - http://bit.ly/1hQuzRI
<h3 class="box2-title"><?php echo $row_rsCatalogue['pageTitle']; ?></h3>
<a style="color:#000" class="show_hide<?=$counter_recipes;?>">Show/hide</a>
<script type="text/javascript">
$(document).ready(function(){
$("#box_to_show<?=$counter_recipes;?>").hide();
$(".show_hide<?=$counter_recipes;?>").show();
$('.show_hide<?=$counter_recipes;?>').on('click',function(){
$("#box_to_show<?=$counter_recipes;?>").slideToggle();
});
});
</script>
<div class="box2-content" id="box_to_show<?=$counter_recipes;?>">
<p><?php echo $row_rsCatalogue['pageSubTitle']; ?></p>
<?php
if ($row_rsCatalogue['pageId']){
$rsPriceMatrix = $db->select('pageOption',array('pageId'=>$db->mes($row_rsCatalogue['pageId'])),array('sort'=>'ASC','name'=>'ASC'));
$ingredients = '';
while ($row_rsPriceMatrix = $rsPriceMatrix->get_row_assoc()){
$ingredients .= $row_rsPriceMatrix['name'].', ';
}
$ingredients = rtrim($ingredients,', ');
echo '<p>'.$ingredients.'</p>';
}
?>
如果需要,我可以粘贴更多。
答案 0 :(得分:3)
根据您的代码:
$('.show_hide<?=$counter_recipes;?>').on('click',function(){
//Hide open divs!
$("[id^=box_to_show]:visible").slideUp();
//slide down
$("#box_to_show<?=$counter_recipes;?>").slideToggle();
});
更容易的方法是给你的div打开和关闭一个公共类,然后在函数的开头调用$(".someClass:visible").slideUp();
。