怎么用jsp给select中options赋值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么用jsp给select中options赋值相关的知识,希望对你有一定的参考价值。

参考技术A 动态赋值比较繁琐,你可以在页面中设置两个

根据不同的条件对这两个
进行显示或者隐藏
,隐藏时需要设置当前的为disabled状态
也可以先把
改成

controller
里写
request.getparamter("xy_key")就能获取到$xue.dictvalue0
参考技术B 在JS中先给select定义个id,通过var
select=document.getElementById();取这个select,如果你要改变是的选中option的value的话就用select.option[select.selectedIndex].value给它赋值,如果你要改的是option显示的值的话~就只能用innerHTML了~select.option[select.selectedIndex].innerHTML

bootstrap 中的chosen-select怎么动态添加和删除option

<select id="ddlResourceType" onchange="getvalue(this)">
</select>
动态删除select中的所有options:
document.getElementById("ddlResourceType").options.length=0;
动态删除select中的某一项option:
document.getElementById("ddlResourceType").options.remove(indx);
动态添加select中的项option:
document.getElementById("ddlResourceType").options.add(new Option(text,value));
上面在IE和FireFox都能测试成功,希望以后你可以用上。
其实用标准的DOM操作也可以,就是document.createElement,appendChild,removeChild之类的。
取值方面
function getvalue(obj)

var m=obj.options[obj.selectedIndex].value
alert(m);//获取value
var n=obj.options[obj.selectedIndex].text
alert(n);//获取文本
追问

试过了,这种方法对select控件有效,但是对chosen-select控件无效,就是如图这种:

参考技术A chosen是根据原select生产一个ul,然后将原select标签隐藏。所以直接改select是无效的,需要在你修改select后,重新调用$(select).chosen()就行了。

以上是关于怎么用jsp给select中options赋值的主要内容,如果未能解决你的问题,请参考以下文章

用thymeleaf用标签给页面select下拉框赋值怎么实现

jsp怎样使得下拉框只读而且不会影响取值

JS如何动态给select的option赋值?

js html select

jsp里.add(newoption)怎么设置默认选中

html下拉框怎么用js添加新值