怎么用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控件无效,就是如图这种:
以上是关于怎么用jsp给select中options赋值的主要内容,如果未能解决你的问题,请参考以下文章