`
chengjie177
  • 浏览: 25850 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
文章分类
社区版块
存档分类
最新评论
文章列表
/** * 复选框批量选取 * 使用方法 * 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. ...
Global site tag (gtag.js) - Google Analytics