gpt4 book ai didi

处理 XML 文件的 Javascript

转载 作者:行者123 更新时间:2023-11-30 08:17:04 32 4
gpt4 key购买 nike

Javascript 可以直接处理通过 AJAX 请求的 xml 文件吗?我有一个服务器端 xml 文件,需要从该 xml 填充字段。我可以说“直接读取“xmlfile.xml”(在服务器上)”,然后从收到的响应中提取 javascript 中的值并根据需要填充吗?能不能举例说明一下?

最佳答案

如果你会使用 jQuery,你可以简单地执行 XML AJAX call , 并用静态文件响应。

 <script type="application/javascript">
$(function() {
$('#get-xml a').click(function() {
$.ajax({
type: "GET",
url: "xmlfile.xml",
dataType: "xml",
success: function(xml) {
$(xml).find('label').each(function(){
// your code. some example code bellow
var id_text = $(this).attr('id')
var name_text = $(this).find('name').text()

$('<li></li>')
.html(name_text + ' (' + id_text + ')')
.appendTo('#get-xml ol');
});
}
});
});
});
</script>

请注意:

Note: If you specify the dataType option described below, make sure the server sends the correct MIME type in the response (eg. xml as "text/xml"). Sending the wrong MIME type can lead to unexpected problems in your script.

关于处理 XML 文件的 Javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1427062/

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