Struts 1 MessageRessources - 参数
是否可以做这样的事情:
<bean:message bundle="MyBundle" key="mytext.text"
arg0='<input type="text" name="text" value="<%=num %>"'/>
我知道可以传递 HTML 元素,但最终会得到一个值为“<%=num%>
”的输入框而不是该变量的实际值。 我缺少什么?
Is it possible to do something like this:
<bean:message bundle="MyBundle" key="mytext.text"
arg0='<input type="text" name="text" value="<%=num %>"'/>
I know that it is possible to pass an HTML element, but I will end up with an input box with the value "<%=num%>
" instead the actual value of that variable. What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法将 scriptlet 与标签参数的字符串组合起来,就像您看到 scriptlet 未评估一样,因此请尝试:
请注意,输入标签未像您提供的示例中那样关闭。
You cannot combine scriptlet with a string for a tag argument, like you see the scriptlet is not evaluated so try that:
Take note that the input tag is not closed as in the example you provided.