gpt4 book ai didi

javascript - 从ajax读取文本文件并将字符串发送到html文件

转载 作者:行者123 更新时间:2023-12-02 18:13:55 30 4
gpt4 key购买 nike

我是 ajax 新手,我有一个包含数值的文本文件

与ids.txt一样,这里12345映射值为54321

12345,54321
23456,65432
34567,76543
45678,87654
56789,98765

这是我的 Html 文件

<html><body>
<INPUT TYPE="TEXT" NAME="text" SIZE="25" >
<button type="button" onclick="getId()">Submit</button>
<div id="myDiv"><h2></h2></div>
</body></html>

如果我在上面的文本框中输入值 12345,我应该从 ids.txt 文件中获取其映射值 54321,并且它应该显示在 div 标签“myDiv”中

有人可以帮忙吗?

最佳答案

我会考虑你使用 JSON 。将您的 ids.txt 转换为包含以下内容的 ids.json:

{
12345:54321
23456:65432
34567:76543
45678:87654
56789:98765
}

然后你可以用JSON.parse()解析ajax调用的数据,你就得到了一个对象。

使用 $.get 的 jQuery 示例:

$.get("ids.json",function(data){
//jQuery probably has already parsed the json

//get the text out of the textfield
var text = $('input[name="text"]').val();

//display the number in #myDiv
$("#myDiv").text(data[text]);
});

关于javascript - 从ajax读取文本文件并将字符串发送到html文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19474650/

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