6
A
回答
4
您可以使用CSS樣式以及jQuery的主題屬性來裝飾你的錯誤行動和行動信息。
<div class="error"><s:actionerror theme="jquery"/></div>
<div class="message"><s:actionmessage theme="jquery"/></div>
.message li
{
font-size: 14px;
color: #000066;
text-align: center;
list-style: none;
font-family: Trebuchet MS,sans-serif,inherit,Arial,monospace;
}
.error li
{
font-size: 14px;
color: #990000;
text-align: center;
list-style: none;
padding-right: 50px;
}
1
您應該在呈現HTML源代碼後查看HTML源代碼,以查看Struts用於呈現該消息的CSS類和HTML結構。您也可以查看模板文件。
默認支柱呈現每個動作信息如下:
<ul>
<li><span class="actionMessage">${message}</span></li>
</ul>
每個消息都會有<li><span class="actionMessage">${message}</span></li>
。
您可以爲actionMessage創建CSS,或者更改模板文件以根據需要呈現這些CSS。
這些模板文件位於:
/template/simple/actionerror.ftl
/template/simple/actionmessage.ftl
字段錯誤可能對你有用的:
/template/simple/fielderror.ftl
注:如果您使用的是XHTML主題的那些文件可能位於該模板下的文件夾
+0
值得記住的是,在任何struts2 UI標籤中,您都可以爲樣式目的添加樣式,ID和類屬性。 – Quaternion
2
嗨,我在這裏發佈s olution你的問題,如果你希望你的行動消息和錯誤消息來裝飾使用此代碼
<div id="sucessMsg"><s:actionerror /></div>
sucessMsg is the class that is using by struts2 internally so override this so kindly put the below code inside the css
#sucessMsg {
text-align: center;
font-weight: bolder;
color: #6A2A91;
list-style: none;
margin: auto;
}
#errorMsg {
text-align: center;
font-weight: bolder;
color: red;
list-style: none;
width: 350px;
margin: auto;
}
相關問題
- 1. Struts2的與S:動作標籤
- 2. Struts2標籤:Fielderrors標籤
- 3. 發送消息到活動標籤
- 4. struts2的發送HTML文本帶回actionerror或動作消息
- 5. Struts2的標籤,如果沒有工作
- 6. html標籤中的Grails i18n消息
- 7. Struts2表格標籤
- 8. Struts2包含標籤
- 9. Struts2標籤NoClassDefFound NestedMessagesPresentTag
- 10. flex錯誤消息標籤
- 11. 某些JSTL消息標籤
- 12. FCM - 獲取消息標籤
- 13. java.lang.StackOverflowError的從Struts2的行動標籤調用操作時
- 14. 如何獲取struts2動作消息到Modal
- 15. <s:if>標籤不工作struts2
- 16. 與struts2中的動態密鑰捆綁的消息
- 17. 使用Struts2的標籤
- 18. 使用Struts2的標籤
- 19. Struts2選擇標籤:required vs. required標籤
- 20. 結合Spring Security標籤和Struts2標籤
- 21. 將操作中的消息從struts2傳遞到JSP
- 22. 在標籤內容中加載消息
- 23. struts2 netbeans plugin intellisense for struts2標籤在jsp頁面不工作
- 24. Swift中的UIButton動作消息的正確功能簽名
- 25. Struts2的:如何動態地確定行動Struts2的標籤提交按鈕
- 26. 將struts2標籤信息保存在localStorage中
- 27. Struts2向其他動作發送信息
- 28. divs中的Struts2標籤顯示爲空
- 29. 通過的消息給JSP(Struts2的)
- 30. Struts2 - 如何使用Struts2標籤將鏈接/按鈕放入標籤/跨度中?
你可以使用簡單的主題,你可以應用你想要的CSS樣式。 –