在struts2中的超链接标题属性中插入标签属性字符串
我有一个小问题,如何放置标签属性字符串以在超链接中显示为标题?
我的代码:
<a href="<s:property value="picurl" />" rel="shadowbox" title="<s:property value='title'/>" ><img id="scale-mid-high" src="<s:property value="picurl" title="maximize" />" align="left"/></a>
I have a small problem, how can I place a tag property string to show as a title in a hyperlink?
my code:
<a href="<s:property value="picurl" />" rel="shadowbox" title="<s:property value='title'/>" ><img id="scale-mid-high" src="<s:property value="picurl" title="maximize" />" align="left"/></a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是一种方法,但可以使用
标签...我忘记了为什么,但我通常会选择上面列出的内容,我发现由于某些要求,我需要替换它们。
有关这两个内容的更多详细信息,请访问
http://struts.apache.org/2.2。 1.1/docs/tag-reference.html 其中有一个包含大多数标签的示例,并解释了所有可能的属性。
Is one method but could use the
tag... I forget why but I generally go with what I listed above I found I needed to replace them because of some requirement.
For more details on both
http://struts.apache.org/2.2.1.1/docs/tag-reference.html where there is an example with most of the tags and all the possible properties are explained.