1. Konzepteinführung
Die Verwendung des html-Tags in stust1, einschließlich html:select, html:option, Details sind wie folgt
<html:select property="test String " size="1"> <html:option value="value1">Show Value1</html:option> <html:option value="value2">Show Value2</html:option> <html:option value="value3">Show Value3</html:option> <:html:submit property="submit" value="提交"/> </html:select>
Dabei stellt Eigenschaft den entsprechenden Eigenschaftsnamen in der Auswahlliste und Aktion< dar 🎜>Formular. Wenn der Benutzer auf „Senden“ klickt, wird der Wert der vom Benutzer ausgewählten Option auf der Testseite angezeigt. Das Folgende ist der laufende Effekt des Codes:
Wert1 anzeigen Wert2 anzeigenWert3 anzeigen
array sein, damit ihm mehrere vom Benutzer ausgewählte Werte gleichzeitig zugewiesen werden können.
<html:select property="testString" size="1"> <html:option value="value1">Show Value1</html:option> <html:option value="value2">Show Value2</html:option> <html:option value="value3">Show Value3</html:option> </html:select>
<html:option value="value1">Show Value1</html:option>
Konfigurationsdatei“.
Show Value1 Show Value2 Show Value3
<html:option></html:option>转化成<option></option>时加了selected属性,RTFSC,看源码 if(selectTag().isMatched(value)) results.append(" selected=\"selected\""); public boolean isMatched(String value) { /* <-MISALIGNED-> */ /* 126*/ if(match == null || value == null) /* <-MISALIGNED-> */ /* 127*/ return false; /* <-MISALIGNED-> */ /* 130*/ for(int i = 0; i < match.length; i++) /* <-MISALIGNED-> */ /* 131*/ if(value.equals(match[i])) /* <-MISALIGNED-> */ /* 132*/ return true; /* <-MISALIGNED-> */ /* 135*/ return false; } if(value != null) {/* 234*/ match = new String[1]; /* 235*/ match[0] = value; } else { /* 238*/ Object bean = TagUtils.getInstance().lookup(super.pageContext, name, null); /* 239*/ if(bean == null) {/* 240*/ JspException e = new JspException(messages.getMessage("getter.bean", name)); /* 243*/ TagUtils.getInstance().saveException(super.pageContext, e); /* 244*/ throw e; } /* 248*/ try { /* <-MISALIGNED-> */ /* 248*/ match = BeanUtils.getArrayProperty(bean, property); //获取form中的select的value值 /* <-MISALIGNED-> */ /* 249*/ if(match == null) /* <-MISALIGNED-> */ /* 250*/ match = new String[0]; } /* 254*/ catch(IllegalAccessException e) { /* <-MISALIGNED-> */ /* 254*/ TagUtils.getInstance().saveException(super.pageContext, e); /* <-MISALIGNED-> */ /* 255*/ throw new JspException(messages.getMessage("getter.access", property, name)); }
Das obige ist der detaillierte Inhalt vonDetaillierte Erläuterung des ausgewählten Attributs beim Konvertieren von