我有4个DIV在加载我想要3个隐藏..点击(标签链接)我想显示该标签的内容.. 并隐藏其余的..这就是我所拥有的......它不起作用=(
http://codepen.io/anon/pen/AafIH
<script type='text/javascript' src='http://mimerchant.com/wp-includes/js/jquery/jquery.js'></script>
<div class="tabnav">
<ul class="fancyNav">
<li id="news"><a href="#creditcard" id="creditcard_link">Credit Card Processing</a>
</li>
<li id="about"><a href="#atm" id="atm_link">ATM Processing</a>
</li>
<li id="services"><a href="#giftcard" id="giftcard_link">Gift Card Program</a>
</li>
<li id="contact"><a href="#check" id="check_link">Check Guarantee</a>
</li>
</ul>
</div>
<div class="tabcontent">
<div id="creditcard">
<div id="textbox">
<h3>Credit Card Processing</h3>
<p>Some Text here about what this credit card tab is about</p>
<h3>Low Rates</h3>
<p>About Low Rates</h3>
</div>
</div>
<div id="atm">
<div id="textbox">
<h3>ATM Processing</h3>
<p>Some text here about the ATM services</p>
<h3>Another Title</h3>
<p>Some text</p>
</div>
</div>
<div id="giftcard">
<div id="textbox">
<h3>Gift Card Program</h3>
<p>Something about gift cards</p>
</div>
</div>
<div id="check">
<div id="textbox">
<h3>Check Guarantee</h3>
<p>Something About Checks</p>
</div>
</div>
</div>
答案 0 :(得分:1)
如果你包含jQuery,你的代码工作正常。
在右上角,有一个图标,可让您选择要包含的框架
答案 1 :(得分:1)
在CodePen中,JS片段在HTML中的jQuery调用之前被加载。您可以通过单击JS窗格顶部的齿轮图标并将jQuery添加到库列表来在CodePen上修复此问题。当您实际组建一个HTML页面以在本地运行时,在导入您正在编写的脚本之前导入jQuery。
如果将来无法实现此脚本,请检查JavaScript控制台。此错误通常意味着未导入jQuery:
Uncaught TypeError: Property '$' of object [object Object] is not a function
答案 2 :(得分:0)
正如我所看到的,你所包含的jQuery实例无效。 尝试从here
替换它