gpt4 book ai didi

javascript - 找不到代码中的语法错误

转载 作者:行者123 更新时间:2023-12-03 07:04:36 25 4
gpt4 key购买 nike

Chrome 开发工具告诉我第 3 行有错误,但我不确定它是什么。诚然,我对 jQuery 编码很陌生,所以我遵循的教程可能有问题。

$.ajax({
url: 'https://www.carcraft.atsbusinessandgames.com/xmls/carcraft_1-7-10Test.xml',
type: "Get",
dataType: 'xml',
success: function (result) {
}
$(result).find('Module').each(function() {
//$("#ModsList").append($(this).text());
var authors = $(this).find('authors').text();
var version = $(this).find('version').text();
var date = $(this).find('date').text();
var episode = $(this).find('episode').text();
$("#ModsList").append("<tr>" + "<td>" + $authors + "</td>" + "<td>" + $version + "</td>" + "<td>" + $date + "</td>" + "<td>" + $episode + "</td>" + "</tr>");
});
error: function() {
alert("Notify the site owner that the xml file has a syntax error and is therefore unreadable.");
}
});

这是我试图通过上面的代码修改的表:

<table id="ModsList">

<tr style="font-weight: bold;">

<td>Mod Name</td>

<td>Author(s)</td>

<td>Version</td>

<td>Date added/updated</td>

<td>Episode Added</td>

</tr>

</table>

最佳答案

您的成功处理程序未正确声明。您必须将代码放在 { } 之间才能获得成功函数。正如您现在所看到的,您正在将随机代码插入到对象定义中,这是不合法的。

将代码更改为:

$.ajax({
url: 'https://www.carcraft.atsbusinessandgames.com/xmls/carcraft_1-7-10Test.xml',
type: "Get",
dataType: 'xml',
success: function (result) {
$(result).find('Module').each(function() {
//$("#ModsList").append($(this).text());
var authors = $(this).find('authors').text();
var version = $(this).find('version').text();
var date = $(this).find('date').text();
var episode = $(this).find('episode').text();
$("#ModsList").append("<tr>" + "<td>" + authors + "</td>" + "<td>" + version + "</td>" + "<td>" + date + "</td>" + "<td>"+episode+"</td>" + "</tr>");
});
},
error: function() {
alert("Notify the site owner that the xml file has a syntax error and is therefore unreadable.");
}
});

关于javascript - 找不到代码中的语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36881054/

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