Avoid window jump to top when clicking #-links

后端 未结 12 1180
礼貌的吻别
礼貌的吻别 2020-11-27 21:32

I\'ve got a page with some questions and answers, the answers are collapsed by default. When they click the question I expand the hidden answer-div. The problem is that when

12条回答
  •  猫巷女王i
    2020-11-27 22:02

    $('a').click( function() {
      if ($(this).attr("href") == window.location.hash) {
        event.preventDefault()
      }
    });
    

提交回复
热议问题