“标题”的属性 支柱标签

发布于 2024-07-25 04:39:26 字数 189 浏览 2 评论 0原文

在常规选择框中,您可以使用“选项”字段中的“标题”属性在鼠标悬停时显示完整标题。

在 Apache Struts 中,您可以使用“html:options”标签创建选择框。 我认为这个标签不支持“标题”属性。 是否有另一种方法可以在鼠标悬停时显示“html:options”struts 标签的选项的完整标题?

谢谢

In a regular select box you can show the full title on mouseover using "title" attribute in the "option" field.

In Apache Struts, you make the select box with the "html:options" tag. I don't think this tag supports the "title" attribute. Is there another way to show the full title of an option on mouseover for the "html:options" struts tag?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

丿*梦醉红颜 2024-08-01 04:39:26

Struts' tag for <select><option>.. is <s:select />, or <s:doubleselect /> for double lists. <s:doubleselect /> doesn't support title at all, you have to modify the Javascript it generates by hand (ddoubleselect.ftl).
For with the default theme, the file is found in struts2-core-2.1.6.jar under template/simple/.

秋凉 2024-08-01 04:39:26

在 html 或 jsp 文件中硬编码是一种不好的代码实践。

如果您在struts 1.x中编写代码,请尝试将所有消息存储在MessageResources_en.properties中,

尝试使用以下内容更新您的jsp(或者选择)

title="<bean:message key="your_tool_tip"/>

并修改MessageResources_en.properties

your_tool_tip=toolTIp is a cool idea

ps,jquery中也有可用的解决方案

hard code in html or jsp file is a bad code practice.

if you are writing code in struts 1.x try to store all messages in MessageResources_en.properties

try update your jsp with following (alternatively go for )

title="<bean:message key="your_tool_tip"/>

and modify MessageResources_en.properties

your_tool_tip=toolTIp is a cool idea

ps there are solutions available in jquery as well

寒江雪… 2024-08-01 04:39:26

我承认我不熟悉 Apache Struts。 如果没有人更熟悉可以为您找到更好的解决方案,那么最坏的情况您可以将其作为 javascript 工具提示来完成。 这需要更多的努力,但可以让您对演示文稿进行更有效的视觉控制。

I'll admit to not being familiar with Apache Struts. If nobody more familiar can find you a better solution then worst case you could do it as a javascript tooltip. It's more effort, but gives you more effective visual control over the presentation.

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