gpt4 book ai didi

php - jquery、ajax、php、json - 有没有一个好的 jquery 级联/链式选择插件?

转载 作者:行者123 更新时间:2023-12-01 06:07:33 28 4
gpt4 key购买 nike

有谁知道一个好的级联/链式选择 jquery 1.4.x 插件(或 jquery ui 小部件),它使用 ajax 调用 php,返回 json 格式数据来填充选项?

最佳答案

这个问题很模糊,但是您可以使用 .post() 函数将请求发送到 PHP 文件,然后让 PHP 创建一个数组并使用 json_encode() 将数组编码为JSON,然后回显该 JSON 数据,该数据可以由 jQuery .post() 接收。做这样的事情:

jQuery:

$.post("you_php_file.php",{ request: "YOUR_REQUEST" },function(data){
//do something with the data, stored with the variable data
$('ul li:nth-child(1)').html(data[0]);
$('ul li:nth-child(2)').html(data[1]);
},"json")

PHP:

$request = $_POST['request'];
//create an array with the data you want to send to JavaScript
$array = array();
$array[] = 'Hello';
$array[] = 'World!';
echo json_encode($array);

关于php - jquery、ajax、php、json - 有没有一个好的 jquery 级联/链式选择插件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4116466/

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