点击搜索按钮显示更新按钮并隐藏保存按钮

时间:2015-06-20 05:38:01

标签: jsp struts2

<s:if test='%{cust_id!=""}'>
<s:submit cssclass="pagebutton" action="Custmer_ entry" theme="simple" value="update" on click="validate"/>

在加载页面上,我想隐藏更新按钮。点击搜索按钮显示更新按钮并隐藏保存按钮。

1 个答案:

答案 0 :(得分:-1)

抱歉,我错了。
当你检查

    <s:if test='%{cust_id!=""}'>

您需要检查它是否为空

    <s:if test='%{cust_id!="" || cust_id!=null}'>

请以这种方式检查