Javascript 使用struts应用程序资源属性在Jsp中悬停文本区域时显示标题消息

Javascript 使用struts应用程序资源属性在Jsp中悬停文本区域时显示标题消息,javascript,java,jquery,jsp,struts-1,Javascript,Java,Jquery,Jsp,Struts 1,如何为Jsp使用应用程序资源属性值 <span id="####aaa"> <html:textarea title="" /> </span> 当鼠标位于文本区域上时。它将显示来自applicationresource.properties文件的标题值 ApplicationResource.Properties abcd.text.value=Hello defg.text.value=Hey 通过在struts中使用b

如何为Jsp使用应用程序资源属性值

<span id="####aaa">
            <html:textarea title=""   />
</span>

当鼠标位于文本区域上时。它将显示来自applicationresource.properties文件的标题值


ApplicationResource.Properties

abcd.text.value=Hello defg.text.value=Hey

通过在struts中使用bean消息键,例如:

<bean:message key='<%="abcd.text.value"%>'/>

我们如何在JSP文本区域的标题中使用此选项

任何关于这方面的建议都是值得赞赏的