如何将标签和值属性显示为jsp中的标签

时间:2013-01-22 14:48:47

标签: html jsp struts label key-value

我使用以下代码显示分支列表。

<html:option value="">--Select Branch--</html:option>
<html:optionsCollection name="branchList" label="label" value="key"/>

如何在标签中显示分支标签和分支值。例如:现在它将标签显示为“Seattle”,值为“SEA”。我希望值保持不变,但标签显示为“西雅图(SEA)”

此外,这是jsp的一部分。 更新:应用程序使用struts框架。

1 个答案:

答案 0 :(得分:0)

将以下方法添加到bean:

public String getDisplayedLabel() {
    return label + "(" + key + ")";
}

并使用

<html:optionsCollection name="branchList" label="displayedLabel" value="key"/>