gpt4 book ai didi

javascript - 如何停止我的 xml 文件在刷新时复制但改为更新?

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

我有这个包含文本初始化的 xml 文件。

嗨,我叫史蒂文

当我添加一个 Setinterval 以每 10 秒加载一次 xml 文件时,我得到

你好我叫史蒂文你好我叫史蒂文你好我叫史蒂文你好我叫史蒂文这将继续每 10 秒复制一次

这是我的 javascript xml 函数

myLoadInteval = setInterval(Xml, 10000);

function Xml(){

$(document).ready(function() {
$.ajax({
type: "GET",
url: "http://www.mobilefriendlywebapps.co.uk/tayloredtest1/note.xml",
dataType: "xml",
success: parseXml
});
function parseXml(xml) {
$(xml).find("menu").each(function() {
//find each instance of loc in xml file and wrap it in a link
$("div#site_list").append( $(this).find("cd").text() );
$("div#treatments").append( $(this).find("cd1").text() );
$("div#preparation").append( $(this).find("cd2").text() );
$("div#products").append( $(this).find("cd3").text() );
$("div#info").append( $(this).find("cd4").text() );
$("div#price").append( $(this).find("cd5").text() );
$("div#promo").append( $(this).find("cd6").text() );
});
}

});

如何在加载新的 xml 之前删除旧的 xml?

最佳答案

与其使用 append(),不如使用 html()

$("div#site_list").html( $(this).find("cd").text() );

关于javascript - 如何停止我的 xml 文件在刷新时复制但改为更新?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11196831/

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