|
|
|
สอบถามเรื่อง การเขียนให้ List box OnChange ค่าที่เราเลือก |
|
|
|
|
|
|
|
<script language="javascript">
function fncCheck(_val,_index){
if(_val == "id"){
var _name = document.getElementById("name")
_name.options[_index].selected = true
}
else{
var _name = document.getElementById("id")
_name.options[_index].selected = true
}
}
</script>
ID :
<select id="id" onchange="fncCheck('id',this.selectedIndex);">
<option value="">-select-</option>
<option value="001">001</option>
<option value="002">002</option>
<option value="003">003</option>
</select>
Name :
<select id="name" onchange="fncCheck('name',this.selectedIndex);">
<option value="">-select-</option>
<option value="หนึ่ง">หนึ่ง</option>
<option value="สอง">สอง</option>
<option value="สาม">สาม</option>
</select>
|
|
|
|
|
Date :
2011-09-03 11:05:35 |
By :
thep |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|