“标题”的属性 支柱标签
在常规选择框中,您可以使用“选项”字段中的“标题”属性在鼠标悬停时显示完整标题。
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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/.
在 html 或 jsp 文件中硬编码是一种不好的代码实践。
如果您在struts 1.x中编写代码,请尝试将所有消息存储在MessageResources_en.properties中,
尝试使用以下内容更新您的jsp(或者选择)
并修改MessageResources_en.properties
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 )
and modify MessageResources_en.properties
ps there are solutions available in jquery as well
我承认我不熟悉 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.