`
zhengshuangxi1226
  • 浏览: 50379 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
http://hn2002.iteye.com/
dojo.require("dojo.parser"); dojo.require("dijit.Dialog"); function myAlert(tle, msg, url, callback, html) { if (dojo.byId("alert")) { document.body.removeChild(dojo.byId("alert")); } if (dijit.byId("confirm")) { dijit.byId("confirm" ...
function Timer(id) { this.id = id; this.timer = null; this.begin = function(count) { this.show(this.id, count)(); this.timer = setInterval(this.show(this.id, count - 1), 1000); } this.show = function(id, count) { return function() { if (count <= 0) { if(window.ActiveXObject) ...
js地方大发达啊
Java分页类
看不懂你的代码你没有获取第几页的地方啊怎么现实? 自己写的分页 <%    String lins = (String)request.getParameter("q") ;    int q;    if(lins==null){     q = 1;    }    else{     q = Integer.parseInt(lins);    }   %>     <div align="center"> <% if(q==1){ out.print("<a href=index.jsp?q=&qu ...
<%   int PageSize=20; //一页显示的记录数   int RowCount; //记录总数   int PageCount; //总页数   int Page; //待显示页码   int i,j;   String strPage = request.getParameter("page");   if (strPage==null){   //表明在QueryString中没有page这一个参数,此时显示第一页数据 Page = 1;   } else{   //将字符串转换成整型 Page = Integer.parseInt ...
<SCRIPT> secs = 60; // Number of secs to delay -CHINA-studio wait = secs * 100; document.forms.register.Submit.disabled =true; for(i=1;i<=(wait/100);i++) {   window.setTimeout("doUpdate(" + i + ")", i * 100); } window.setTimeout("Timer()", wait); functio ...
<html> <head><title></title> <script language='javascript' type='text/javascript'> var secs =5; //倒计时的秒数 var URL ; function Load(url){ URL =url; for(var i=secs;i>=0;i--) { window.xywTimeout('doUpdate(' + i + ')', (secs-i) * 1000); } } function doUpdate(num) { document ...
Global site tag (gtag.js) - Google Analytics