编程语言
文章平均质量分 78
ming_lian
希望自己越来越好
展开
-
栏目跳转 用iframe加载页面 ajax加载页面在div中
service配置: public Channel getById(long id); public List getByParentId(long plateId); serviceIpml配置: public List getByParentId(long plateId){ List oneList = channelMapper.getByParentI原创 2016-05-26 13:22:59 · 4728 阅读 · 0 评论 -
jsp列表查询 列表第一个样式与其他样式不同
列表数据样式不同,使用属性,begin表示从哪一个开始,end表示循环的哪一个结束 botton点击属性onclick,跳转到另外一个页面使用js代码: function toContent(id){ window.location.href="/*/a/"+id+".html"; 《window.location="地址"》 }列表查询原创 2016-05-27 13:36:09 · 809 阅读 · 0 评论 -
页面分页
查询列表,实现页面分页: public class Page { private int curPage;//当前页 private int length;//每页条数 private int count;//总条数 private int pageNum;//总页数 private int start; public Page(int curPage ,int length){原创 2016-06-02 14:30:13 · 309 阅读 · 0 评论