gpt4 book ai didi

javascript - 如何添加选项以选择从 PHP 中的 AJAX 请求收到的表单

转载 作者:行者123 更新时间:2023-11-30 11:14:44 24 4
gpt4 key购买 nike

AJAX接收到的选择框数据添加选项的方法是什么

HTML:

<select id="options"></select>

jQuery:

$.ajax({
type: "POST",
url: "ajax/addCustDetail.php",
data: {customerId},
cache: false,
success: function(html)
{
$("#options").html(html);
}
});

最佳答案

有两种方法:

  1. 通过从 addCustDetail.php 返回字符串,例如:

    $response = '<option value="1">One</option><option value="2">Two</option>';

并且此 $response 被返回,在这种情况下,您可以简单地在 jquery 中使用它,例如:

    $("#options").html(html);
  1. 如果您从 addCustDetail.php 返回一个 json 数组,在这种情况下,您已经在 jquery 中解析它并迭代它并创建选项,然后将它们添加到选择中。

关于javascript - 如何添加选项以选择从 PHP 中的 AJAX 请求收到的表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52070194/

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