|
|
|
คือผมมี listbox 3 ตัว ครับ มีการเก็บค่าเป็น array แต่ผมต้องการเลือก listbox ตัวที่ 2 แล้วให้แสดงค่า array ในlistbox ตัวที่ 3 |
|
|
|
|
|
|
|
โค้ดครับ ช่วยหน่อยนะครับ
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<script language = "JavaScript">
//**** List area (Start) ***//
function ListArea(SelectValue)
{
frmMain.area.length = 0
var myOption = new Option('','')
//frmMain.area.options[frmMain.area.length]= myOption
<?
$groupArea=array(1,1,2,2,3,3); //แยกจังหวัดลงในเขตแต่ละเขต
$area=array("กทมเขต1","กทมเขต2","กระบี่เขต1","กระบี่เขต2","กาญเขต1","กาญเขต2");
for($i=0;$i<6;$i++){ //value area จะนับตาม $i
?>
x = "<?=$i;?>";
mySubList = new Array();
strGroup = "<?=$groupArea[$i];?>";
strValue = "<?=$i;?>";
strItem = "<?=$area[$i];?>";
mySubList[x,0] = strItem;
mySubList[x,1] = strGroup;
mySubList[x,2] = strValue;
if (mySubList[x,1] == SelectValue){
var myOption = new Option(mySubList[x,0], mySubList[x,2])
frmMain.area.options[frmMain.area.length]= myOption
}
<?
}
?>
}
//**** List area (End) ***//
</script>
<title>Untitled Document</title>
</head>
<body>
<form name="frmMain" action="test2.php" method="post">
province
<select id="province" name="province" onChange = "ListArea(this.value)">
<?
$province = array("ทั้งหมด","กรุงเทพ","กระบี่","กาญจนบุรี");
for($j=0;$j<4;$j++){
?>
<option value="<?=$j; ?>" selected="selected"><?=$province[$j];?></option>
<?
}
?>
</select>
area
<select name="area" id="area" style="width:120px" >
<option value="">ทั้งหมด</option>
</select>
<select name="area2" id="area2" style="width:120px" >
<option value="">ทั้งหมด</option>
</select>
<input type="submit" name="button" id="button" value="Submit" />
</form>
<body>
</body>
</html>
|
|
|
|
|
Date :
2012-09-01 10:49:20 |
By :
Bas |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|