gpt4 book ai didi

javascript - 在砖石布局中使用ajax加载网页的初始数据

转载 作者:行者123 更新时间:2023-12-03 08:54:57 25 4
gpt4 key购买 nike

这是我用来从 php 文件获取数据的 ajax

$.ajax({
type: "post",
url: "content.php",
data: somevariable,
dataType: "text",
success: function(response) {
$(this).parent().find(".loadingdataimage").hide();
$content.html(response);
}.bind(this)
});

现在我怎样才能使此代码在页面加载时从 content.php 文件获取页面的初始数据

最佳答案

@Octopoid 找到了正确的解决方案,下面是一个有关如何使用 JQuery 执行此操作的示例:

$.ready(function () {
$.ajax({
type: "post",
url: "content.php",
data: somevariable,
dataType: "text",
success: function(response) {
$(this).parent().find(".loadingdataimage").hide();
$content.html(response);
}.bind(this)
});
});

如果你想将逻辑分离到一个函数中,以便你可以再次调用,你可以这样实现:

var refresh = function() {
$.ajax({
type: "post",
url: "content.php",
data: somevariable,
dataType: "text",
success: function(response) {
$(this).parent().find(".loadingdataimage").hide();
$content.html(response);
}.bind(this)
});
}
$.ready(refresh);

关于javascript - 在砖石布局中使用ajax加载网页的初始数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32542773/

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