jquery 点击 href 显示 div 不工作

jquery click on href show div not working

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

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

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

使用这个

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

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

改为:

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