You must specify the value attribute or nested tag

在用struts标签
<html:multibox property="alls"></html:multibox>
犯了一个低级错误,查了半天原来用此标签的时候一定要给初始值:比如
"<html:multibox property="alls"></html:multibox>"
这样是会报
"You must specify the value attribute or nested tag"
错误
"<html:multibox property="alls">全选</html:multibox>"
这样就不会报了!

你可能感兴趣的:(java,struts)