select中option的内容表单提交后jsp中怎么取

2024-12-02 21:31:57
推荐回答(5个)
回答1:

document.getElementById('your select id').options
拿到了指定select的所有option,是个option对象的数组
你遍历就可以 比如第2个option的value:
document.getElementById('aa').options[1].value

回答2:

value的值是数字,可以尝试对option的id赋值,再用getElementById获取,转一下型,放到一个数组里面,传过去用下标取出来

回答3:

你就把value的值换成“时间”,“分数”,“数量”,不要用数字来表示了。

回答4:

你就把value的值换成“时间”,“分数”,“数量”,不要用数字来表示了

回答5:

可以用js获得这两个数据 然后再传到后台啊
document.getElementById("a").value
document.getElementById("a").text