我的环境是 Tomcat 5.0.28 + Struts2.0.6 (web.xml 配置的是支持 Servlet 2.4)
testTooltip.jsp 文件内容如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="s" uri="/struts-tags"%> <html> <head> <title>Test Struts Tooltip</title> <s:head /> </head> <body> <s:form tooltipConfig="#{'jsTooltipEnabled':'true'}"> <s:textfield label="Name" name="name" tooltip="Enter your Name here" tooltipConfig="#{'tooltipFontColor':'#ff0000'}" /> </s:form> </body> </html> |
打开浏览器,浏览时鼠标移到输入框前面那个图标上稍呆会儿的效果是这样子的。 阅读全文 >>