<button> Show </button>
<ol style="display:none;">
<?php foreach ($this->getItems() as $_item): ?>
<li>
<?php if ($_item->getCount() > 0): ?>
<a href="<?php echo $this->urlEscape($_item->getUrl()) ?>">
<?php echo $_item->getLabel() ?>
<?php if ($this->shouldDisplayProductCount()): ?>
<span class="count">(<?php echo $_item->getCount() ?>)</span>
<?php endif; ?>
</a>
<?php else: ?>
<span>
<?php echo $_item->getLabel(); ?>
<?php if ($this->shouldDisplayProductCount()): ?>
<span class="count">(<?php echo $_item->getCount() ?>)</span>
<?php endif; ?>
</span>
<?php endif; ?>
</li>
<?php endforeach ?>
</ol>
我有以下代碼打印magento中的過濾器我想顯示/隱藏過濾器。這會從過濾器打印多次按鈕 - > ol過濾器按鈕 - > ol。我想這樣做:當我點擊按鈕時,我只想要第一個ol按鈕後顯示或隱藏。我需要幫助謝謝!JQUERY每個按鈕之後的第一個元素
刪除'php'代碼,只寫html結果。 – Mohammad