我试过这个脚本,但运行它时没有任何反应。
<a href="#sign_up">sign up</a>
<script>
$('a[href = "#sign_up"]').click(function(){
$("#signup").show();
$("#page").hide();
});
</script>
答案 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();
});