还是个下拉列表事件的问题
现有下拉列表和文本框各一个,当我选择下拉列表内的值后,文本框自动得到下拉列表选择的值。
------解决方案-------------------- <form> <select onchange= "this.form.inputName.value= this.value ">
<option value= "1 "> <option value= "3 "> <option>
</select>
<input name=inputName> </form>
------解决方案-------------------- <script type= 'text/javascript '>
function changeSelect(_object){
for(var i=0;i <10;i++){
document.getElementById( "text_ "+i).value=_object.value;
}
}
</script>
<select onchange= 'javaScript:changeSelect(this); '>
.......
</select>
<input type= 'text ' id= 'text_0 '>
<input type= 'text ' id= 'text_1 '>
....
<input type= 'text ' id= 'text_9>