|
|
|
listbox ค่ะ คืออยากใหขึ้นเป็นauto คือรบกวนสอบถามหน่อยค่ะไม่ทราบว่า listbox สามารถทำเป็น auto ได้ไหม |
|
|
|
|
|
|
|
อ๋อ อย่างนี้นี่เอง มีเยอะเลยครับในกระทู้นี่หละ
Code (PHP)
<form onsubmit="bus();return false" name="frmMain" action="#" method="post">
<table><tr><b><br/><font size="2" color="#FF3300">เส้นทางรถโดยสาร</font></b></tr><br/>
<tr><td align="right">
<select onChange="ListBusstation(this.value)" class="listRoute" >
<option selected value="0">-- เลือกต้นทาง --</option>
<?
$strSQLbus = "SELECT * FROM busstation ORDER BY busstation_id ASC ";
$objQuery = mysql_query($strSQLbus) or die ("Error Query [".$strSQLbus."]");
while($objResult = mysql_fetch_array($objQuery))
{
?>
<option value="<?=$objResult["busstation_id"];?>"><?=$objResult["busstation_name"];?></option>
<?
}
?>
</select>
</td>
</tr>
<tr>
<td align="right">
<select id="buspoint" class="listRoute"><option value="0">ปลายทาง/ประเภทรถ</option></select>
</td>
</tr><br/>
<tr>
<td align="right">
<input type="submit" class="btStart" name="submit" value="Start" align="left"/>
<input type="button" class="btPause" onclick="togglePause()" id="pauseBtn" value=" Pause "/>
</td>
</tr>
</table>
</form>
<script type="text/javascript">
function ListBusstation(SelectValue)
{
document.frmMain.buspoint.length = 0
var myOption = new Option('','');
document.frmMain.buspoint.options[document.frmMain.buspoint.length]= myOption;
<?
$intRows = 0;
$strSQLbus = "SELECT * FROM bus ORDER BY bus_id ASC ";
$objQuery = mysql_query($strSQLbus) or die ("Error Query [".$strSQLbus."]");
$intRows = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$intRows++;
?>
x = <?=$intRows;?>;
mySubList = new Array();
strGroup = <?=$objResult["busstation_id"];?>;
strValue ="<?=$objResult["bus_latlng"];?>";
strItem = "<?=$objResult["bus_name"];?>";
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]);
document.frmMain.buspoint.options[document.frmMain.buspoint.length]= myOption;
}
<?
}
?>
}
</script>
อันนี้เป็นโค้ดประยุกต์มาจากของพี่วินนะครับ
|
|
|
|
|
Date :
2010-01-25 19:13:26 |
By :
indysoft |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|