代码之家  ›  专栏  ›  技术社区  ›  Mercer

将数组从JSP传递到Javascript(如何在Javascript中创建矩阵)

  •  0
  • Mercer  · 技术社区  · 15 年前

    我的java列表

    <html:select property="immeuble.zone" size="1"  styleId="zone"  styleClass="saisie">
       <html:optionsCollection  property="optionsZone" label="libelle" value="code"/> 
    </html:select>
    

    我的lsit在我的jsp中

    List optionsZone = new ArrayList(3);
    optionsZone.add(new CodeLibelleBean("1","1"));
    optionsZone.add(new CodeLibelleBean("2","2"));
    optionsZone.add(new CodeLibelleBean("3","3"));
    

    HashMap Tarif = new HashMap();
    Tarif.put("1","100");
    Tarif.put("1","150");
    Tarif.put("1","180");
    Tarif.put("2","200");
    Tarif.put("2","250");
    Tarif.put("2","290");
    Tarif.put("3","300");
    Tarif.put("3","350");
    Tarif.put("3","360");
    
    1 回复  |  直到 15 年前
    推荐文章