私はsweetalert2のスクリプトを使用しています。ユーザーが自分のサイトにコメントを投稿したときにコメントにスクロールし、甘い警告がポップアップしますが、甘い警告ボックスで[OK]をクリックすると、上にスクロールします。[OK]をクリックした後、sweetalertのスクロールを止める方法を教えてください。
私が読んできたことから、私は何かのpreventdefaultや何かが必要ですが、どこに行くのか分かりません。
<!-- Sweet alert -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/6.6.8/sweetalert2.min.js"></script>
<script>
window.location.hash = "comment-<?php echo $newcommentid; ?>";
$(document).ready(function() {
swal({
title: "Comment Posted",
text: "Thanks, your comment has now been successfully posted.",
type: "success"
});
});
</script>
をこの問題は修正されていた、最新のおSweetAlert2依存性をアップグレードしてくださいバージョン。 –