gpt4 book ai didi

javascript - 使用 jQuery 重新加载
后,我的整个网站向左移动,看起来很损坏

转载 作者:行者123 更新时间:2023-12-01 01:59:20 25 4
gpt4 key购买 nike

我已使用以下代码重新加载我的 <div> 中的内容

function loadlink(){
$('#prices').load('prices.php',function () {
$(this).unwrap();
});
}

loadlink(); // This will run on page load
setInterval(function(){
loadlink() // this will run after every 15 seconds
}, 15000);

但在达到 15 秒后,我的整个网站向左移动,看起来很糟糕。我在这里做错了什么?

基本信息:

<div id="prices">
<?php include 'prices.php';?>
</div>

prices.php 包含一些 html 元素和用于从 api 获取价格的 php 代码。

答案:删除$(this).unwrap();如果您不希望删除对齐的代码!

最佳答案

您要删除响应中的第一个 div,请尝试以下操作:

function loadlink(){
$('#prices').load('prices.php');
}

loadlink(); // This will run on page load
setInterval(function(){
loadlink() // this will run after every 15 seconds
}, 15000);

关于javascript - 使用 jQuery 重新加载 <div> 后,我的整个网站向左移动,看起来很损坏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50747640/

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