在struts2中的超链接标题属性中插入标签属性字符串

发布于 2024-10-12 11:13:12 字数 306 浏览 3 评论 0原文

我有一个小问题,如何放置标签属性字符串以在超链接中显示为标题?

我的代码:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心欲静而疯不止 2024-10-19 11:13:12
<a href="<s:url namespace='someNameSpace' action='someAction'">
    <s:property value="whatever"/>
</a>

是一种方法,但可以使用

<s:a> 

标签...我忘记了为什么,但我通常会选择上面列出的内容,我发现由于某些要求,我需要替换它们。

有关这两个内容的更多详细信息,请访问

<s:url> and 
<s:a>

http://struts.apache.org/2.2。 1.1/docs/tag-reference.html 其中有一个包含大多数标签的示例,并解释了所有可能的属性。

<a href="<s:url namespace='someNameSpace' action='someAction'">
    <s:property value="whatever"/>
</a>

Is one method but could use the

<s:a> 

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

<s:url> and 
<s:a>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文