重新显示用户输入
由于 的值是在运行时定义的,因此如何重新显示用户输入?我如何在这里使用
${param}
与未知值进行比较?
how can I redisplay user input, sinc the values of <input type="checkBox" name="group" value=${grp.groupNo}>
is defined at run time? how can I use ${param}
here to make comparison with unknown values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果是复选框(和单选按钮),您需要设置
checked
属性。EL 中的条件运算符
?:
当条件为 true 时将打印checked
。因此,它在生成的 HTML 中将如下所示:In case of checkboxes (and radiobuttons) you'd like to set the
checked
attribute.The conditional operator
?:
in EL will printchecked
when the condition is true. So it will then end up like follows in generated HTML: