我有一组 DIV
一个 DIV 最初设置为没有 .hidden 属性,所有其他 DIV 都具有它。
我有一组 HREF 的调用 DIV 将使其显示。
我有一个“隐藏显示:无”的 CSS;和“显示显示:块;”
我希望能够循环遍历所有 div,删除所选 div 的 .hidden 属性并放置 OLD div 的 .hidden 属性...
简单吧?我对JQ的了解是有限的,并且在路上颠簸......就像现在一样。
这是代码:
<section id='content'>
<div id='stuff1' class='somestuff hidden'>
<p>Hello World 1</p>
</div>
<div id='stuff2' class='somestuff'>
<p>Hello World 2</p>
</div>
<div id='stuff3' class='somestuff hidden'>
<p>Hello World 3</p>
</div>
<div id='stuff4' class='somestuff hidden'>
<p>Hello World 4</p>
</div>
<div id='stuff5' class='somestuff hidden'>
<p>Hello World 5</p>
</div>
</section>
这是资产净值:
<div id='nav'>
<a href='#' onclick='changePage(this.id)' id='stuff1'>Click for Content 1</a>
<a href='#' onclick='changePage(this.id)' id='stuff2'>Click for Content 2</a>
<a href='#' onclick='changePage(this.id)' id='stuff3'>Click for Content 3</a>
<a href='#' onclick='changePage(this.id)' id='stuff4'>Click for Content 4</a>
<a href='#' onclick='changePage(this.id)' id='stuff5'>Click for Content 5</a>
</div>
最后我相信的是功能:
<script>
function changePage(currPage)
{
$(document).ready(function() {
$('#' + currPage + 'Page .contentBody').each(function(i, j) {
console.log(i); //the i
console.log(j); //the div
$('#' + currPage + 'Page' + "Page").removeClass('hiddenstuff');
$('#' + currPage + 'Page' + "Page").addClass('hiddenstuff');
});
});
}
</script>
是的,我知道这个功能无处不在,但本质上,我怎么知道用户会点击什么以及他们什么时候点击,他们刚刚离开了哪一个,他们要去哪一个???嗯?
谢谢