gpt4 book ai didi

javascript - 使用 JSON 数据填充选择选项

转载 作者:行者123 更新时间:2023-12-03 06:36:29 24 4
gpt4 key购买 nike

我看过很多例子,我自己也在我的许多程序中使用过它,但由于某种原因,它今天不起作用。

我有可以在 console.log 中显示的 JSON 数据,但在我的 select 中无法使用。我在控制台中收到此错误:

Cannot use 'in' operator to search for '76' in {"hello1":"hello1","hello2":"hello2"}

这是我的代码:

$.get("JSON.php?value=two", function(response) {
console.log(response);
// this is what my JSON returns
// {"hello1":"hello1","hello2":"hello2"}

if (response != '') {
$('#dropdown').find('option').remove();
$.each(response,function(key, value){
$('#dropdown').append('<option value=' + key + '>' + value + '</option>');
});
}
)};

最佳答案

我刚刚测试成功

<html>
<head>
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script>
$( document ).ready(function() {
var response = {"hello1":"hello1","hello2":"hello2"} ;
$('#dropdown').find('option').remove();
$.each(response,function(key, value){
$('#dropdown').append('<option value=' + key + '>' + value + '</option>');
});
});

</script>
</head>
<body>
<select id="dropdown"></select>
</body>
</html>

请检查。你会得到一些东西

关于javascript - 使用 JSON 数据填充选择选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38179484/

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