3
私はこれを取得していません、ページはちょうどアニメーションではなく、IDにジャンプします。 アラート「クリック」も表示されていませんか?スムーズなスクロールjsはアニメーションをトリガーしませんか?
<script>
jQuery(document).ready(function($) {
alert('start');
$('ul#menu-sde-menu li a[href^="#"]').on('click', function(event) {
alert("click");
var target = $(this.getAttribute('href'));
if (target.length) {
event.preventDefault();
$('html, body').stop().animate({
scrollTop: target.offset().top
}, 1000);
}
});
});
とシンプルなメニュー
<ul id="menu-sde-menu"><li><a href="http://localhost/testdomain/sde/#link1">link 1</a></li><li><a href="http://localhost/testdomain/sde/#link2">link 2</a></li></ul>
私は https://www.abeautifulsite.net/smoothly-scroll-to-an-element-without-a-jquery-plugin-2
ああ、ありがとうございます。私はワードプレスを使用していると確信して私は絶対的な道を持っているだけでなく、アンカー – alex