gpt4 book ai didi

javascript - 创建 TreeView 下拉列表

转载 作者:行者123 更新时间:2023-11-27 23:15:08 25 4
gpt4 key购买 nike

我的问题是,我希望我的输出以
的形式显示在选择标签下拉列表( TreeView 结构)而且我想选择多个类别 借助使用 html 标记,即 Checkbox

<?php
function getCategory($parent_id){
$con = connect_db();
$sql = "select ocd.category_id,ocd.name, occ.parent_id from oc_category_description ocd, oc_category occ where ocd.category_id=occ.category_id and parent_id='".$parent_id."' ORDER BY name";
$result = mysqli_query($con,$sql);

if (mysqli_num_rows($result) > 0)
{

echo "<ul>";
while ($row = mysqli_fetch_object($result))
{
echo "<li>".$row->name.'('.$row->category_id.')'."</li>";
getCategory($row->category_id);
}
echo "</ul>";
}
}
$parent_id = 0;
getCategory($parent_id);
?>

这里的输出:- enter link description here

最佳答案

您可以使用这些代码行在下拉列表中显示您的结果。希望这是您想要的。

如果 (mysqli_num_rows($result) > 0) {

    echo '<select name="nameUwanted">';
while ($row = mysqli_fetch_object($result))
{
echo "<option value='". $row->name ."'>" .$row->name.'('.$row->category_id.')'."</option>" ;
getCategory($row->category_id);
}
echo "</select>";
}
}

关于javascript - 创建 TreeView 下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58299511/

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