我正在研究Struts模型,我只是想知道如何通過警報窗口顯示結果消息。這段代碼返回警報窗口中的消息顯示
結果消息:
<html:messages id="msg" header="message.header" footer="message.footer">
<li><b><bean:write name="msg" /></b></li>
</html:messages>
我正在研究Struts模型,我只是想知道如何通過警報窗口顯示結果消息。這段代碼返回警報窗口中的消息顯示
結果消息:
<html:messages id="msg" header="message.header" footer="message.footer">
<li><b><bean:write name="msg" /></b></li>
</html:messages>
嘗試這種解決方法。 「表達式語言」可以替換「bean:write」標籤。
<script>var txt = '';</script>
<html:messages id="msg">
<script>txt += '${msg}\n';</script>
</html:messages>
<script>alert(txt);</script>
謝謝〜^^。我嘗試然後在警報窗口中顯示$ {msg}消息。但是,我收到你的提示。謝謝〜 – user1564979 2012-08-01 01:57:54
當然你可以寫'' – berus97 2012-08-01 08:21:50
您的意思是在一個JavaScript的彈出窗口中? – 2012-07-31 16:09:12