Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は 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>