我一直在試圖瞭解如何將本教程轉換爲Wordpress。我可能做錯了Javascript的地方 - 把它放在錯誤的地方或這樣..我不知道如果Wordpress已經有jQuery腳本包括或不是..如何在Wordpress中實現粘性返回頁首?
如果有人可以幫助我我倒是很感激:)
這是我的index.php中把靠近我的身體標記結束按鈕:
<a href="#" class="go-top">Go Top</a>
這是JavaScript這我只是在下面:
<!-- JavaScript -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
// Show or hide the sticky footer button
$(window).scroll(function() {
if ($(this).scrollTop() > 200) {
$('.go-top').fadeIn(200);
} else {
$('.go-top').fadeOut(200);
}
});
// Animate the scroll to top
$('.go-top').click(function(event) {
event.preventDefault();
$('html, body').animate({scrollTop: 0}, 300);
})
});
</script>
你的代碼是正確的我已經測試了我的WordPress可以檢查任何javascritp錯誤即將 –