|
|
|
ช่วยดูให้หน่อยค่ะ >> Dependent ListMenu ทำได้แล้ว แต่อยากให้ค่าที่ออกใน list มาโชว์ใน textfiled |
|
|
|
|
|
|
|
แก้ไขในไฟล์ js อะครับถ้าใช้ js ยังไงก็เอาโค๊ดมาดูครับ
|
|
|
|
|
Date :
2012-01-05 00:06:10 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รู้สึก่อนนี้จะตอบให้แล้วน่ะครับ
|
|
|
|
|
Date :
2012-01-05 06:20:39 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พอดีความรู้โค้ดน้อยอ่ะค่ะ ขอบคุณ mr.win นะค่ะ ลองให้เพื่อนดูตามที่คุณวินแนะนำ เค้าก็พอเข้าใจว่า ให้เอาคำมาต่อแล้วตัดคำ อะไรประมาณนี้ค่ะ แต่เราดูแล้วเราไม่เข้าใจอ่ะค่ะ เลยไม่รู้ว่ามันทำได้ แหะๆ
เอาส่วนในจาวามาให้ดูค่ะ
<script language = "JavaScript">
function ListGen(SelectValue)
{
form1.gen.length = 0
//*** Insert null Default Value ***//
var myOption = new Option('','')
form1.gen.options[form1.gen.length]= myOption
<?
$intRows = 0;
$strSQL = "SELECT * FROM generation ORDER BY gen_id ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$intRows = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$intRows++;
?>
x = <?=$intRows;?>;
mySubList = new Array();
strGroup = <?=$objResult["c_id"];?>;
strValue = "<?=$objResult["gen_id"];?>";
strItem = "<?=$objResult["gen"];?>";
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])
form1.gen.options[form1.gen.length]= myOption
}
<?
}
?>
}
//--------------------------------------------------------------**** ListDate_Start (Start) ***--------------------------------------------------------------//
function ListDate_Start(SelectValue)
{
form1.date_start.length = 0
//*** Insert null Default Value ***//
var myOption = new Option('','')
form1.date_start.options[form1.date_start.length]= myOption
<?
$intRows = 0;
$strSQL = "SELECT * FROM generation ORDER BY gen_id ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$intRows = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$intRows++;
?>
x = <?=$intRows;?>;
mySubList = new Array();
strGroup = <?=$objResult["gen_id"];?>;
strValue = "<?=$objResult["gen"];?>";
strItem = "<?=$objResult["date_start"];?>";
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])
form1.date_start.options[form1.date_start.length]= myOption
}
<?
}
?>
}
//--------------------------------------------------------------**** ListDate_End (Start) ***----------------------------------------------------------------//
function ListDate_End(SelectValue)
{
form1.date_end.length = 0
//*** Insert null Default Value ***//
var myOption = new Option('','')
form1.date_end.options[form1.date_end.length]= myOption
<?
$intRows = 0;
$strSQL = "SELECT * FROM generation ORDER BY gen_id ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$intRows = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$intRows++;
?>
x = <?=$intRows;?>;
mySubList = new Array();
strGroup = <?=$objResult["gen_id"];?>;
strValue = "<?=$objResult["gen"];?>";
strItem = "<?=$objResult["date_end"];?>";
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])
form1.date_end.options[form1.date_end.length]= myOption
}
<?
}
?>
}
</script>
|
|
|
|
|
Date :
2012-01-05 22:01:37 |
By :
นศ.ปี 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|