<s:if test='%{cust_id!=""}'>
<s:submit cssclass="pagebutton" action="Custmer_ entry" theme="simple" value="update" on click="validate"/>
在加载页面上,我想隐藏更新按钮。点击搜索按钮显示更新按钮并隐藏保存按钮。
答案 0 :(得分:-1)
<s:if test='%{cust_id!=""}'>
您需要检查它是否为空
<s:if test='%{cust_id!="" || cust_id!=null}'>
请以这种方式检查