`
除了你无可取代
  • 浏览: 149377 次
  • 性别: Icon_minigender_1
  • 来自: 悲鸣洞穴
社区版块
存档分类
最新评论
文章列表

setTimeout

    博客分类:
  • js
window.setTimeout("document.getElementById('').focus();", 50) 当直接掉不起作用是延迟一段时间执行   window.setTimeout(function(){ alert("aa") }, 50)

重新加载该页

    博客分类:
  • js
window.setInterval("location.reload()",5000);
update live_role set roledescription = replace(roledescription,'俺','我') where roleid =22;

java分页封装类

    博客分类:
  • java
public class Pager{    public final static int PAGESIZE = 10;    private int pageSize = PAGESIZE;    private int totalCount;    private int currentPage;    private int totalPage;    private List items = null;    private String staticUrl;    private int prePage = 0;    private int nextPage = 0;    pu ...
Global site tag (gtag.js) - Google Analytics