我有这个页面文章
在此页面中,左侧有导航链接,右侧有内容加载。
function showonlyone(thechosenone) {
$('div[name|="newboxes"]').each(function(index) {
if ($(this).attr("id") == thechosenone) {
$(this).show(200);
}
else {
$(this).hide(600);
}
});
}
我的导航看起来像这样
<ul>
<li><a id="myHeader1" href="javascript:showonlyone('articles');" >ARTICLES</a></li>
<li><a id="myHeader1" href="javascript:showonlyone('whitepapers');" >WHITE PAPERS</a></li>
<li><a id="myHeader1" href="javascript:showonlyone('brochures');" >BROCHURES</a></li>
</ul>
我的内容在 div 中,如下所示
<div id="articles" name="newboxes" style="display:none;">
<div id="whitepapers" name="newboxes" style="display:none;">
<div id="brochures" name="newboxes" style="display:none;">
基本上这个页面,是一个内部页面。我有一个主页,我想有每个部分的链接,所以我想要的部分已经显示出来,所以用户不必再次点击。
知道我该怎么做吗?
感谢您的帮助,如果我没有使用正确的术语,我深表歉意。