这已经让我头疼了几天了。我正在尝试为此找到一个纯 CSS 解决方案,但 JQUERY 也很好。我希望在我的页面上默认有一个每月价格表,并在有人点击链接后立即用“每年”切换表,反之亦然。
这是 HTML 标记:
<div class="pricing_table" id="monthly">
<ul>
<li>Basic</li>
<li><a href="" class="buy_now">Subscribe Now</a></li>
</ul>
<ul style="background-color:#CCCCCC;">
<h2>Monthly Plans</h2><a>Click here to switch to the "Yearly Plans"</a></ul>
</div>
<div class="pricing_table" id="yearly">
<ul>
<li>Basic</li>
<li><a href="" class="buy_now">Subscribe Now</a></li>
</ul>
<ul style="background-color:#CCCCCC;">
<h2>Yearly Plans</h2><a>Click here to switch to the "Monthly Plans"</a></ul>
</div>
提前致谢
更新:
这是解决方案的链接http://jsfiddle.net/8TRAe/1/
特别感谢泰米尔文丹