Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想做以下
<div id="Grants the " + <bean:message key="label.foo/>/>
如何才能做到这一点?基本上,它将一个 bean:message 连接到一个字符串。
您可以在常规 HTML 标记中嵌入 Struts(和其他 JSP 标记库)标记:
<div id="Grants the <bean:message key="label.foo"/>"/>
如果带有键的消息资源有label.foo文本“Foo”映射到它,那么结果将是:
label.foo
<div id="Grants the Foo"/>
尽管值得注意的是,这不是该id属性的有效值。
id