如何使用Struts taglib在链接中传递动态参数值?

时间:2014-01-21 17:34:21

标签: java jsp struts struts-1 taglib

我正在尝试在我的项目中使用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>

但它不起作用。

1 个答案:

答案 0 :(得分:1)

html:button标记仅在form标记内使用。请参阅docs

  

此标记仅在嵌套在表单标记正文中时有效。

还设置属性属性。