gpt4 book ai didi

javascript - jQuery点击后如何保持当前宽度/高度?

转载 作者:行者123 更新时间:2023-11-30 13:23:09 26 4
gpt4 key购买 nike

当我点击下面的代码时,页面会在顶部向上移动。如何保持当前的宽度/高度并且不在页面开头移动用户?

<script type="text/javascript">
$(document).ready(function () {
$("#click").click(function() {
//some things in here
});
});
</script>

最佳答案

导航到顶部是此类链接的默认行为,可以通过调用 e.preventDefault() 来阻止,其中 e 是 jQuery 事件参数:

$("#click").click(function(e) { // <-- `e` is passed to the function
e.preventDefault();

//some things in here
});

关于javascript - jQuery点击后如何保持当前宽度/高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9508796/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com