gpt4 book ai didi

javascript - 如何通过在javascript中导入txt文件来创建列表?

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

我有一个department.txt包含部门的文件:

Chemistry
Physics
Mathematics
Other

我想创建一个下拉列表 <select>将此文件导入到我的 HTML 中。我该如何使用 Javascript 来做到这一点?文件中有50多个部门,因此创建<option>对于每个部门来说这不是一个好主意。

最佳答案

To read txt file, you need to make an ajax call to department.txt and iterate departments like this:

function readFile() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
var res = xhttp.responseText;
res = res.split('\n');
var html = '<select name="department">';
res.forEach(function(item) {
html += '<option value="' + item + '">' + item + '</option>';
});
html += '</select>';
document.body.innerHTML = html;
}
};
xhttp.open("GET", "department.txt", true);
xhttp.send();
}
readFile();

关于javascript - 如何通过在javascript中导入txt文件来创建列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33559962/

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