工作,我有一個鏈接,滾動到頂部錨與網址,而不要使用onclick事件
<a href="index.html?test=test#slides-1" id="re" class="ancLinks"></a>
$("a.ancLinks").click(function(){
elementClick = $("this").attr("href");
$('html, body').animate({
scrollTop: $(elementClick).offset().top
}, 1000);
});
,當我拿出URL(index.html的?=測試試驗)它的工作原理。但我需要絕對鏈接的網址。什麼是錯的
變化'$( 「本」)''到$(本)' – user1477388