好的,我必须下载框,现在,当“在下拉框A中选择一个项目”时,它应该使用该选定值作为PHP中的参数,并使用查询结果来填充下拉框B。
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<select name="sel1" id="sel1">
<option>Alphabets</option>
<option>Numbers</option>
</select>
<select name="sel2" id="sel2">
<option></option>
</select>
</body>
</html>
当我在“sel1”中选择“字母”时,它应该用字母填充“sel2”,如果我在 sel1 中选择“数字”,它应该用数字填充 sel2。我希望这足够清楚,我是 PHP 新手,所以我真的需要有关此 ajax 回发内容的帮助。