java如何取到html中的下拉框中的value呢?
6个回答
展开全部
JComboBox有一个getSelectedItem()的方法得到选择的值和一个getSelectedIndex()得到选择值的索引。getSelectedObjects()得到选择的多个值。getItemCount()是得到选择的数量。getItemAt(int i)是得到指定索引的值。
下面是一个具体的例子,首先输出所有下拉框的值,然后是在下拉框选择改变是输出所选择的的值。
public class ComboxGet implements ItemListener
{
private JComboBox<Object> comboBox ;
public ComboxGet()
{
JFrame frame = new JFrame("window");
final String def[] =
{ "A", "B", "C", "D", "E" };
comboBox = new JComboBox<Object>(def);
comboBox.addItemListener(this);
comboBox.setEditable(true);
frame.add(comboBox, BorderLayout.NORTH);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
frame.setVisible(true);
for(int i = 0;i<comboBox.getItemCount();i++)
System.out.println(comboBox.getItemAt(i));
}
public static void main(final String args[])
{
new ComboxGet();
}
@Override
public void itemStateChanged(ItemEvent e)
{
System.out.println(comboBox.getSelectedItem());
}
}
下面是一个具体的例子,首先输出所有下拉框的值,然后是在下拉框选择改变是输出所选择的的值。
public class ComboxGet implements ItemListener
{
private JComboBox<Object> comboBox ;
public ComboxGet()
{
JFrame frame = new JFrame("window");
final String def[] =
{ "A", "B", "C", "D", "E" };
comboBox = new JComboBox<Object>(def);
comboBox.addItemListener(this);
comboBox.setEditable(true);
frame.add(comboBox, BorderLayout.NORTH);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
frame.setVisible(true);
for(int i = 0;i<comboBox.getItemCount();i++)
System.out.println(comboBox.getItemAt(i));
}
public static void main(final String args[])
{
new ComboxGet();
}
@Override
public void itemStateChanged(ItemEvent e)
{
System.out.println(comboBox.getSelectedItem());
}
}
展开全部
1.用JavaScript
<select id="autoDeploy"..></select>
<script type="javascript">
var value = false;
for(i=0;i<document.getElementById("autoDeploy").options.length;i++)
{
if(document.getElementById("object).options[i].value==object.value)
{
document.getElementById("object").options[i].selected="selected";break;
}
}
</script>
2.页面中获得
<select name="autoDeploy"..></select>
String value = (String)request.getParmeter("autoDeploy");
<select id="autoDeploy"..></select>
<script type="javascript">
var value = false;
for(i=0;i<document.getElementById("autoDeploy").options.length;i++)
{
if(document.getElementById("object).options[i].value==object.value)
{
document.getElementById("object").options[i].selected="selected";break;
}
}
</script>
2.页面中获得
<select name="autoDeploy"..></select>
String value = (String)request.getParmeter("autoDeploy");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
JS获取下拉框的值
<select name="abc" id="abc" size="5" onclick="javascript:document.getElementById('input_value').value=document.getElementById('abc').value">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<input name="input_value">
<select name="abc" id="abc" size="5" onclick="javascript:document.getElementById('input_value').value=document.getElementById('abc').value">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<input name="input_value">
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<option>不是有个name属性吗,那就是变量名,request.getparameter("属性名")获得值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
直接获取select的value就是选中的值。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |