- 浏览: 26470 次
- 性别:
- 来自: 长沙
最新评论
-
xxxyyy333444:
不错,方法很灵活,很好,顶顶。。。。。。。mark
SQL一次性插入多条记录
文章列表
/**
* 复选框批量选取
* 使用方法
* js
* $(function(){
* //初始化实现全选反选
* $("#all").myCheckbox();
* //返回选中checkbox的value值
* $("#all").myCheckbox.val();
* });
* html:
* 全选<input id="all" type="checkbox"/>
* <input type="chec ...
在spring mvc中实现在Controller中进行页面跳转有两种方式
1.
public ModelAndView login(HttpServletResponse response, String id) {
response.sendRedirect("index.do="+id);
return null;
}
2.
public ModelAndView login(HttpServletResponse response, String id) {
return new ModelAndView("redirect:index. ...