1. 去掉<input> 标签的 默认背景及边框(亲测submit/button管用)
style="BACKGROUND-COLOR: transparent; border: 0px;"
2.判断 checkbox/radio 的状态是否为 checked(使用EL表达式)
${TNews.newsRecommend==1? "checked=checked":"" }
//
${TColumn.columnType eq "单页" ? "checked='checked'":""}
3.为 submit/button 添加背景图片,去边框
<input type="submit" value="确定" style="width:50px;height:25px;border:none;background:url(${pageContext.request.contextPath }/images/u141.png)left top no-repeat;"/>