使ID链接可见 - 单击锚点时防止默认事件。

时间:2013-01-22 03:26:42

标签: javascript jquery html css

一个非常简单的问题,但我想不出在谷歌上搜索的“正确”字样。我的问题是我想点击它之后仍然可以看到“历史记录”链接。我不希望页面转到div,而只是改变内容。我知道我需要jquery来隐藏/切换内容,但是我被困在链接部分。

#goals{
display             : none;
}

#history{
display             : block;
}

<p ><a id="History" href="#history"> <b>History</b> </a></p>
<p ><a id="Goals" href="#goals"> <b>Goals</b> </a></p>

<div id="history">
<p> blah blah blah </p>
</div>

<div id="goals">
<p> blah blah blah </p>
</div>

$("#Goals").click(function(){
        $("#history).hide();
        $("#goals").show();
})

3 个答案:

答案 0 :(得分:1)

您需要在传递给处理程序的事件参数上调用preventDefault()方法。例如:

<a id="historyLink" href="#">History</a> 

...和...

$('#historyLink').click(function(e){
   e.preventDefault(); // block the default action
   // do something
});

答案 1 :(得分:0)

您不需要CSS,您可以使用jQuery完成所有操作:

HTML

<p ><a id="History" href="#history"> <b>History</b> </a></p>
<p ><a id="Goals" href="#goals"> <b>Goals</b> </a></p>

<div id="history">
<p> history blah blah blah </p>
</div>

<div id="goals">
<p> goals blah blah blah </p>
</div>

的jQuery

$("#goals").hide();

$("#Goals").click(function(){
    $("#history").hide();
    $("#goals").show();
});

$("#History").click(function(){
    $("#goals").hide();
    $("#history").show();
});

这是一个jsFiddle将它们捆绑在一起。

答案 2 :(得分:0)

您正在移动页面的原因是因为这是锚点上的click事件的默认操作。 您需要做的是确保不会发生默认操作(这是导致页面上“移动”的原因。 我建议如下:

<!-- you don't need to link it to the actual id, since you are toggling the visibility using jQuery -->
<a id="historyLink" href="#">History</a>

然后,就jQuery而言:

$('#historyLink').click(function(event){
    //prevent the page from scrolling
    event.preventDefault();
    //possibly hide the other div if it is visible
    $('#theotherdiv').hide();
    //show the div
    $('#historyLink').show();
});