我正在尝试在我的项目中使用Struts框架。我想在链接中使用html:button
发送参数,但我不明白如何制作。
换句话说,我想翻译这一行:
<input type="button" onClick="window.location.href='resum.do?action=ViewMessage&&id_message=<%= id_msg %>'" value="View"/>
到Struts taglib,类似这样:
<html:button property="" onclick="window.location.href='resum.do?action=ViewMessage&&id_message=<%= id_msg %>'" value="View"></html:button>
但它不起作用。