jquery点击href show div不工作

时间:2015-03-02 10:19:17

标签: jquery href show

我试过这个脚本,但运行它时没有任何反应。

<a href="#sign_up">sign up</a>

<script>
$('a[href = "#sign_up"]').click(function(){
    $("#signup").show();
    $("#page").hide();
    });
</script>

2 个答案:

答案 0 :(得分:0)

使用此

<a href="#sign_up" id="sign_up">sign up</a>

<script>
$('#sign_up').click(function(){
    $("#signup").show();
    $("#page").hide();
    });
</script>

答案 1 :(得分:0)

改为:

$('a[href="#sign_up"]').click(function(e){ // remove the spaces
   e.preventDefault(); // pervent the jump
   $("#sign_up").show(); // check this id
   $("#page").hide();
});