这是一个示例,您可以自定义以执行您想要的操作。本质上,您可以使用 jQuery / AJAX 来完成此操作。
下面的示例创建了第二个下拉框,其中填充了找到的值。如果您逐行遵循逻辑,您会发现它实际上非常简单。我留下了几行注释掉的行,如果未注释(一次一个),将向您展示脚本在每个阶段所做的事情。
文件 1 -- TESTER.PHP
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
//alert('Document is ready');
$('#stSelect').change(function() {
var sel_stud = $(this).val();
//alert('You picked: ' + sel_stud);
$.ajax({
type: "POST",
url: "another_php_file.php",
data: 'theOption=' + sel_stud,
success: function(whatigot) {
//alert('Server-side response: ' + whatigot);
$('#LaDIV').html(whatigot);
$('#theButton').click(function() {
alert('You clicked the button');
});
} //END success fn
}); //END $.ajax
}); //END dropdown change event
}); //END document.ready
</script>
</head>
<body>
<select name="students" id="stSelect">
<option value="">Please Select</option>
<option value="John">John Doe</option>
<option value="Mike">Mike Williams</option>
<option value="Chris">Chris Edwards</option>
</select>
<div id="LaDIV"></div>
</body>
</html>
文件 2 - another_php_file.php
<?php
//Login to database (usually this is stored in a separate php file and included in each file where required)
$server = 'localhost'; //localhost is the usual name of the server if apache/Linux.
$login = 'root';
$pword = '';
$dbname = 'test';
mysql_connect($server,$login,$pword) or die($connect_error); //or die(mysql_error());
mysql_select_db($dbname) or die($connect_error);
//Get value posted in by ajax
$selStudent = $_POST['theOption'];
//die('You sent: ' . $selStudent);
//Run DB query
$query = "SELECT * FROM `category` WHERE `master` = 0";
$result = mysql_query($query) or die('Fn another_php_file.php ERROR: ' . mysql_error());
$num_rows_returned = mysql_num_rows($result);
//die('Query returned ' . $num_rows_returned . ' rows.');
//Prepare response html markup
$r = '
<h1>Found in Database:</h1>
<select>
';
//Parse mysql results and create response string. Response can be an html table, a full page, or just a few characters
if ($num_rows_returned > 0) {
while ($row = mysql_fetch_assoc($result)) {
$r = $r . '<option value="' .$row['id']. '">' . $row['name'] . '</option>';
}
} else {
$r = '<p>No student by that name on staff</p>';
}
//Add this extra button for fun
$r = $r . '</select><button id="theButton">Click Me</button>';
//The response echoed below will be inserted into the
echo $r;
要回答通常的问题:“如何使第二个下拉框填充仅与第一个下拉框中的选定选项相关的字段?”
A. 在第一个下拉列表的.change
事件中,您读取第一个下拉框的值:
$('#dropdown_id').change(function() {
var dd1 = $('#dropdown_id').val();
}
B. 在上述.change()
事件的 AJAX 代码中,将该变量包含在要发送到第二个 .PHP 文件(在我们的例子中为“another_php_file.php”)的数据中
C. 你在你的 mysql 查询中使用了传入的变量,从而限制了你的结果。然后将这些结果传递回 AJAX 函数,您可以在success:
AJAX 函数的部分中访问它们
D. 在该成功函数中,您将代码注入到具有修改后的 SELECT 值的 DOM 中。
上面的例子是这样工作的:
用户选择一个学生姓名,这会触发 jQuery.change()
选择器
这是它获取用户选择的选项的行:
var sel_stud = $(this).val();
该值another_php_file.php
通过 AJAX 代码的这一行发送到 :
data: 'theOption=' + sel_stud,
接收文件another_php_file.php
在这里接收用户的选择:
$selStudent = $_POST['theOption'];
Var $selStudent(通过 AJAX 发布的用户选择)用于 mysql 搜索:
$query = " SELECT * FROM `category` WHERE `master` = 0 AND `name` = '$selStudent' ";
(当更改示例以适合您的数据库时,删除了对 $selStudent 的引用。但这(此处,上方)是您将如何使用它)。
我们现在构建一个新的<SELECT>
代码块,将 HTML 存储在一个名为$r
. 当 HTML 完全构建完成后,我将自定义代码返回给 AJAX 例程,只需将其回显即可:
echo $r;
接收到的数据(自定义<SELECT>
代码块)在 AJAX 中可供我们使用success: function() {//code block}
,我可以在这里将其注入到 DOM 中:
$('#LaDIV').html(whatigot);
瞧,您现在看到第二个下拉控件自定义了特定于第一个下拉控件选择的值。
像非微软浏览器一样工作。