基于另一个下拉菜单填充下拉菜单的最佳和最简单的方法是什么
很简单,我有一个动态填充数据的下拉菜单:
SQL 代码
$querycourse = "SELECT course, COUNT(course) AS count FROM acme WHERE course IS NOT NULL GROUP BY course ";
$procc = mysqli_prepare($link, $querycourse);
$queryc = mysqli_query($link, $querycourse) or die(mysqli_error($link));
PHP 代码
echo "<select name='course[]' value='' multiple='multiple' size=10>";
// printing the list box select command
echo "<option value=''>All</option>";
while($ntc=mysqli_fetch_array($queryc)){//Array or records stored in $nt
echo "<option value=\"$ntc[course]\">\"$ntc[course]\"</option>";
/* Option values are added by looping through the array */
}
echo "</select>";// Closing of list box
我需要的是另一个下拉菜单,它根据第一个下拉列表中的选择填充数据盒子。
我正在使用 MySQL、PHP、Javascript,也可以(立即)使用 jQuery。我没有 Ajax 经验。
有人能好心地指出我正确的方向吗?
一如既往,提前感谢荷马
。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
第一个也是最好的方法(如果您有或可能有足够的选项特定数据)
使用 AJAX。我认为,与其他实现相同方法的方法相比,这是最简单的方法。使用Jquery实现AJAX。它使 AJAX 变得小菜一碟!在这里,我为您分享我的小菜一碟 -
以下是您需要的大致完整代码 -
在您的第一个选择上调用 JavaScript 函数 populateSecondDropdown() ,如下所示 -
在 populateSecondDropdown() 函数内部定义 ajax 调用 -
最后是在 AJAX 处理器文件 fetchOptions.php 中获取第二个下拉列表选项的查询。您可以在此处使用 $_POST['id_option'] 来获取其下的选项。这里的数据库查询应该获取每个选项的
option_id
和option_name
字段(正如$.each
中的 jquery 代码所期望的那样)并返回像这样的 json 编码数组:-第二种方法(仅使用 javascript)
获取按第一个下拉列表的字段分组的第二个下拉列表的所有数据。例如,让我们学习第一个下拉列表中显示的课程和第二个下拉列表中显示的课程下的科目
创建第二个下拉列表的所有选项。在创建如下选项时分配与课程相同的班级:-
然后为第一个下拉列表定义
onchange="displaySubjectsUnderThisCourse(this);"
并编写以下 javascript :-这里的基本思想是隐藏/显示选项组,但我的代码可能有错误。
最后,请注意,只有当您的数据量有限并且非常确定将来数据总是会更少时,第二种方法(获取所有选项值)才会更好。但是,由于没有人能够对未来如此确定,因此建议始终使用 AJAX 方法。
First and Best Method (If you have or may have enough option specific data)
Use AJAX. It is the easiest way, I think, compared to the other ways to implement the same. Use Jquery to implement AJAX. It makes AJAX a piece of cake! Here I share my piece of cake for you -
Following is roughly the complete code you need -
Call a javascript function populateSecondDropdown() on your first select like this -
Define an ajax call inside inside the populateSecondDropdown() function -
And finally the query to fetch 2nd dropdown's options in the AJAX processor file fetchOptions.php. You can use $_POST['id_option'] here to fetch the options under it. The database query here should fetch the
option_id
andoption_name
fields for every option (as expected by the jquery code inside$.each
) and return a json encoded array like this:-Second Method (Using only javascript)
Fetch all the data for the second dropdown grouped by the field of the first dropdown. E.g. let's take courses displayed in the first dropdown and subjects under courses displayed in the 2nd
Create all the options of the 2nd dropdown. Assign classes equal to the courses while creating the options like this:-
Then define
onchange="displaySubjectsUnderThisCourse(this);"
for the first dropdown and write this javascript :-The basic idea here is to hide/display option groups but my code may have errors.
Finally, please note, the second method (fetching all the option values) would be better only if you have limited small amount of data and are very sure there will always be less data in future. But, since nobody can be so certain about the future, it is advisable to use the AJAX method always.
有两种方法:
将第二个选择列表放入
JavaScript 数组。当一个选项是
在第一个选择中选择,
填充第二个
适当的选择。
调用服务器并获取
第二个选择的选项基于
关于第一个的选择。这
然后服务器将返回一个列表
选项(每行一个,制表符分隔
我就是这样做的)你解析并
用于填充第二个选择。
第一个选项非常快速且简单,但如果您有大量用于第二个选择的选项,则可能需要一段时间才能加载。
第二种选择更复杂,但更灵活。
下面是一些可以帮助您入门的 Ajax 代码:
创建请求:
发送请求:
使用结果:
如何处理服务器端部分由你决定。
There are two methods:
the second select list into a
JavaScript array. When an option is
selected in the first select,
populate the second with the
appropriate options.
call to the server and fetch the
options for the second select based
on the choice of the first. The
server would then return a list of
options (one per line, tab delimited
is how I do it) that you parse and
use to populate the second select.
The first option is very fast and easy, but may take a while to load if you have a large list of options for the second select.
The second option is more complicated, but much more flexible.
Here's some Ajax code to get you started:
Create a request:
Send the request:
Use the results:
How you handle the server side portion is up to you.