第一个下拉菜单可自动更改第二个下拉菜单的选项

我有两个下拉菜单,其中的选项不是从数据库中获取的。

第一个,让用户选择一个类别。

<select name="category">

<option value="0">None</option>

<option value="1">First</option>

<option value="2">Second</option>

<option value="3">Third</option>

<option value="4">Fourth</option>

</select>

第二个选项取决于第一个下拉菜单中的选择。例如,如果用户选择“ 选项,则第二个下拉列表将显示

<select name="items">

<option value="3">Smartphone</option>

<option value="8">Charger</option>

</select>

但是当用户改变主意,或先选择 选项时,第二个下拉列表现在将显示

<select name="items">

<option value="1">Basketball</option>

<option value="4">Volleyball</option>

</select>

我的问题是我该如何实现?不用数据库就可以做到吗?

谢谢!

回答:

参见下文,查看 的 。

回答:

如果您想使用数据库连接它,是的,肯定可以。考虑此表:

CREATE TABLE `contents` (

`id` INT PRIMARY KEY AUTO_INCREMENT,

`name` VARCHAR (255),

`parent` INT DEFAULT 0

);

INSERT INTO `contents` (`name`, `parent`) VALUES

('Names', 0),

('Places', 0),

('Animals', 0),

('Praveen', 1),

('Bill Gates', 1),

('Steve Jobs', 1),

('India', 2),

('New York', 2),

('London', 2),

('Singapore', 2),

('Cat', 3),

('Dog', 3),

('Tiger', 3),

('Deer', 3)

回答:

+----+------------+--------+

| id | name | parent |

+----+------------+--------+

| 1 | Names | 0 |

| 2 | Places | 0 |

| 3 | Animals | 0 |

| 4 | Praveen | 1 |

| 5 | Bill Gates | 1 |

| 6 | Steve Jobs | 1 |

| 7 | India | 2 |

| 8 | New York | 2 |

| 9 | London | 2 |

| 10 | Singapore | 2 |

| 11 | Cat | 3 |

| 12 | Dog | 3 |

| 13 | Tiger | 3 |

| 14 | Deer | 3 |

+----+------------+--------+

回答:

现在,让我们使用PHP首先填充初始名称<select>

<?php

mysql_connect();

mysql_select_db("contents");

$result = mysql_query("SELECT * FROM `contents` WHERE `parent` = 0");

while(($data = mysql_fetch_array($result)) !== false)

echo '<option value="', $data['id'],'">', $data['name'],'</option>'

?>

现在<select>已经准备好了。通过其onchange函数,我们可以触发AJAX事件以<select>使用父对象提供的数据来获取新事件<select>

<select onchange="ajaxfunction(this.value)">

<!-- Options would have been initially populated here -->

</select>

现在,对于jQuery函数,您可以这样做:

<script type="text/javascript">

function ajaxfunction(parent)

{

$.ajax({

url: 'process.php?parent=' + parent;

success: function(data) {

$("#sub").html(data);

}

});

}

</script>

在HTML中,在之后<select>,您需要给另一个select加上idas sub

<select onchange="ajaxfunction(this.value)">

<!-- Options would have been initially populated here -->

</select>

<select id="sub"></select>

回答:

最后是以下代码process.php

<?php

mysql_connect();

mysql_select_db("contents");

$result = mysql_query("SELECT * FROM `contents` WHERE `parent` = " . mysql_real_escape_string($_GET["parent"]));

while(($data = mysql_fetch_array($result)) !== false)

echo '<option value="', $data['id'],'">', $data['name'],'</option>'

?>

回答:

您只需要在PHP中替换它即可。

<?php

$parent = array("Name", "Place", "Animals");

foreach ($parent as $id => $name)

echo '<option value="s', $id,'">', $name,'</option>'

?>

对于process.php

<?php

$parent = array("Name", "Place", "Animals");

$s0 = array("Praveen", "Bill Gates", "Steve Jobs");

foreach (${$_GET["parent"]} as $id => $name)

echo '<option value="', $data['id'],'">', $data['name'],'</option>'

?>

以上是 第一个下拉菜单可自动更改第二个下拉菜单的选项 的全部内容, 来源链接: utcz.com/qa/428259.html

回到顶部