Struts2 主题theme

一、struts2中form的theme解释:
struts2中theme属性包括xhtml,html,simple,ajax,默认是xhtml.
theme:设置struts2标签的主题.
theme=xhtml:会额外生成tr,td.
theme=simple:生成所对应的html标签形式.

二、struts2中form的theme修改:
html页面中使用struts2的ui tag的时候一般都要把theme设置为simple,把每个tag都设置比较麻烦.
我们可以使用如下两种方法修改默认值xhtml:
1、在struts.xml文件中修改默认值:<constant name="struts.ui.theme" value="simple"/>;
2、在struts.properties文件中,设置以下语句:struts.ui.theme=simple;

你可能感兴趣的:(html,Ajax,UI,struts,XHTML)