如何根据JAVA中的先前下拉菜单更改下拉列表名称。 我是java新手,所以..不太熟悉它。所以问这个问题。
在这个论坛上有很多问题讨论“如何根据先前的选择改变一个下拉列表的内容”。这个问题不同。
例如说,
在第一个按钮中,说你问过,你拥有哪种产品。
如果用户选择仅以英语开发的游戏。
第二个下拉列表应命名为位置/国家。
如果用户选择具有多语言支持的操作系统。那么下一个按钮应该只被命名为Country。
怎么可以这样做?
答案 0 :(得分:0)
您可以查看此脚本并在浏览器中运行它具有相同的想法 您可以申请下拉
<head><style type="text/css">
#style1 {background-color:yellow}
#style2 {background-color:pink}
#style1 p{width:300px;height:50px;border:2px solid
#000;position:absolute;top:60px;left:100px}
#style2 p{width:100px;border:5px solid #000;position:absolute;top:150px;left:300px}
</style>
<script>
<!--
function newid(){
document.getElementsByTagName('body')[0].id="style2"}
// -->
</script></head><body id="style1">
If I have <body id="style1"><br />
<a href="#" onclick="javascript:newid()">how</a> can I select the body tag and change the
id to, for example, style2? <br />
<p>ioend</p>
</body>