MySql データベースを照会する PHP によって作成された 5 つのドロップダウン リストを含むフォームがあります。リストは正しく構築されています。
ユーザーがリストから選択して、選択した値に基づいて下部のフォームに入力できるようにしたいと考えています。
最初のリストを検索します。
リスト1のコードは次のとおりです
<td width="90">
<p><select size="1" name="D1" onchange="showStudent(this.value);">
<?php while(list($id, $student_id)=mysql_fetch_row($result1)) {
echo "
<option value=\"".$student_id."\">".$student_id."</option>";
}
?>
</select></p>
</td>
リスト2からのコードは次のとおりです
<td>
<p><select size="1" name="D2" onchange=”showStudent(this.value);” >
<?php while(list($id, $student_id)=mysql_fetch_row($result2)) {
echo "
<option value=\"".$student_id."\">".$student_id."</option>";
}
?>
</select></p>
</td>
これがJavaScriptコードです
<script type="text/javascript">
function CreateXmlHttpObject() { //function to return the xml http object
var xmlhttp=false;
try{
xmlhttp=new XMLHttpRequest();//creates a new ajax object
}
catch(e) {
try{
xmlhttp= new ActiveXObject("Microsoft.XMLHTTP");//this is for IE browser
}
catch(e){
try{
req = new ActiveXObject("Msxml2.XMLHTTP");//this is for IE browser
}
catch(e1){
xmlhttp=false;//error creating object
}
}
}
return xmlhttp;
}
function showStudent(str)
{
// alert("Made it to show students"+ str);
if (str=="")
{
document.getElementById("student_data").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("student_data").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","editstudent.php?d="+str,true);
xmlhttp.send();
}
</script>
最初のリストから選択すると、すべてが正常に機能します。ただし、リスト 2 ~ 5 から選択しても、何もありません。最初にそれらの1つから選択したとしても。特定のリスト名に一致するように関数の名前を変更しようとしましたが、それでも最初のものだけが機能します。
私は何が欠けていますか?