0

このソリューション1に従って、ページの上部にある別のドロップダウンでユーザーが以前に選択した内容に基づいてドロップダウン リストを作成しました。ただし、オプションで何をする必要があるかは、最初はここに入力されているかどうかわかりませんでした

ありがとう

<?php
mysql_connect('localhost');
mysql_select_db("test");
$result = mysql_query("SELECT * FROM `contents` WHERE `parent` = 0");
echo "<select name='name'>";
while(($data = mysql_fetch_array($result)) !== false)
    echo '<option value="', $data['id'],'">', $data['name'],'</option>'
?>

        <select onchange="ajaxfunction(this.value)">
        <!-- Options would have been initially populated here -->
            </select>
        <select id="sub">    
            </select>

   <script type="text/javascript"> function ajaxfunction(parent)
{
$.ajax({
    url: 'process.php?parent=' + parent;
    success: function(data) {
        $('#sub option').remove();  //// here sub is the id of second select box
        $('#sub').append(data)
    }
});
}
</script>
4

1 に答える 1

0
**<select onchange="ajaxfunction(this.value)">
**<!-- Options would have been initially populated here -->**
</select>**


<script type="text/javascript">
function ajaxfunction(parent)
{
    $.ajax({
        url: 'process.php?parent=' + parent;
        success: function(data) {
            $('#sub option').remove();  //// here sub is the id of second select box
            $('#sub').append(data)
        }
    });
}
</script>
/// script section may be any where on your page


<select id="sub">    ////second select box
</select>
于 2013-07-08T11:15:39.440 に答える