gpt4 book ai didi

php - 在 POST 上禁用滚动

转载 作者:太空宇宙 更新时间:2023-11-03 11:13:13 25 4
gpt4 key购买 nike

我有一个页面使用 POST 从 mySQL 检索数据。然而,这很烦人,因为如果我向下滚动并单击执行 POST 的内容,它会将页面一直踢回顶部。有人知道可以解决这个问题的一些 javascript/jquery 插件吗?

最佳答案

好吧,如果您执行 AJAX POST 并将页面内容替换为 AJAX POST 生成的内容,则这种滚动效果将不是问题。

请记住,此操作对用户来说可能是无缝的(没有浏览器加载)。

假设您有一个表单:

<form id="some_form" action="myphp.php">
<input name="something" value="foo"/>
<input name="something_else" value="bar" />
</form>

和 jQuery:

$("#some_form").submit(function() {
var url = $(this).attr("action");
var form_data = $(this).serialize();
// post the same data via an AJAX call
$.post(url, form_data, function(data) {
// replace the contents from the received response
$("html").html(data);
});
// disable the default form submit behavior
return false;
});

关于php - 在 POST 上禁用滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7049417/

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