如何在提交表单之前更改下拉列表的值?
现在我在提交按钮上有 onclick 事件:
alert(document.myform.myselect.value); //getting old value
document.rscGeneral.selectHlrId.value='x';
alert(document.myform.myselect.value);//getting null
选择的选项中不存在新值...
我只需要修改正在发送的值
如何在提交表单之前更改下拉列表的值?
现在我在提交按钮上有 onclick 事件:
alert(document.myform.myselect.value); //getting old value
document.rscGeneral.selectHlrId.value='x';
alert(document.myform.myselect.value);//getting null
选择的选项中不存在新值...
我只需要修改正在发送的值