dropdownlist获取值ddl并在上面使用它 [英] Dropdownlist get value out ddl and use it above

查看:126
本文介绍了dropdownlist获取值ddl并在上面使用它的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试制作这几个月的下拉列表。当用户选择一个月时,JavaScript将使用所选值填充设置器。现在我想使用上面的值。所以我用Onchange操作对我的选择做了一个表单,并使用getMaand来调用所选择的月份。



表单有问题吗?因为当我把它放在评论中时,我收到了几个月的下拉列表,当我把它放在代码中时,他每个月打印一行。



我不是Java的专家,在表单和选择中使用Onchange是否正确?

  int m = -1; 
HTMLCode + =< form onchange = \window.open('availability.jsp?user = 99& clickeddate =+ dateFormat.format(today.getTime())+& month = + avail.getMaand()+','_ self')\;
HTMLCode + =< select onchange ='javascript:setMonth(\+ m +\);'>; (m = today.get(Calendar.MONTH); m <12; m ++){
if(month == m)
HTMLCode + =< option value =' + m +'selected> + maand_voluit [m] +< / option>;
else
HTMLCode + =< option value ='+ m +'> + maand_voluit [m] +< / option>;
}
HTMLCode + =< / select>;
HTMLCode + =< / form>;

亲切问候

解决方案

您不指定月份的值



尝试这样:

  int month = today.get(Calendar.MONTH); 
HTMLCode + =< form onchange = \window.open('availability.jsp?user = 99& clickeddate =+ dateFormat.format(today.getTime())+& month = + avail.getMaand()+','_ self')\;
HTMLCode + =< select onchange ='javascript:setMonth(\+ m +\);'>; (int m = 0; m <12; m ++){
if(month == m)
HTMLCode + =< option value ='+ m + ; + maand_voluit [m] +< / option>;
else
HTMLCode + =< option value ='+ m +'> + maand_voluit [m] +< / option>;
}
HTMLCode + =< / select>;
HTMLCode + =< / form>;


I'm trying to make a dropdownlist of the months. When the user select a month, the javascript fills the setter with the chosen value. Now I want to use that value above. So I made a form around my select with the action 'Onchange' and use the getMaand to calls the chosen month.

Is there something wrong with the form? Because when I put this in comment, I get the dropdownlist with the months, when I put it in code, he prints every month in one line.

I'm not an expert in Java, is it correct to use Onchange in the form and in the select?

    int m = -1;
    HTMLCode += "<form onchange=\"window.open('availability.jsp?user=99&clickeddate="+dateFormat.format(today.getTime())+"&month=" + avail.getMaand() + "','_self')\"";
    HTMLCode += "<select onchange='javascript:setMonth(\"" + m + "\");'>";
    for (m=today.get(Calendar.MONTH); m<12; m++){    
    if(month == m)
    HTMLCode += "<option value='" + m + "' selected>" + maand_voluit[m]+ "</option>";
    else
    HTMLCode += "<option value='" + m + "'>" + maand_voluit[m] + "</option>";
    }
    HTMLCode += "</select>";
    HTMLCode += "</form>";

Kind regards

解决方案

You don't specify a value for month

Try this:

int month = today.get(Calendar.MONTH);
HTMLCode += "<form onchange=\"window.open('availability.jsp?   user=99&clickeddate="+dateFormat.format(today.getTime())+"&month=" + avail.getMaand() + "','_self')\"";
HTMLCode += "<select onchange='javascript:setMonth(\"" + m + "\");'>";
for (int m=0; m<12; m++){    
if(month == m)
HTMLCode += "<option value='" + m + "' selected>" + maand_voluit[m]+ "</option>";
else
HTMLCode += "<option value='" + m + "'>" + maand_voluit[m] + "</option>";
}
HTMLCode += "</select>";
HTMLCode += "</form>";

这篇关于dropdownlist获取值ddl并在上面使用它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆