Java中刷新页面的问题
初学!要详讲!关于Java编程的题。我的疑问是在java中关于页面刷新的问题1。我的要求是用按键控制页面刷新(在原有显示屏上,显示变更的数据),并计刷新次数。2。自动刷新...
初学!要详讲!关于Java编程的题。我的疑问是在java中关于页面刷新的问题1。我的要求是用按键控制页面刷新(在原有显示屏上,显示变更的数据),并计刷新次数。2。自动刷新,并计次数。请讲解全套function.
展开
2013-09-06
展开全部
上面的一车代码全部不用看,只用看<body> <% int count=0; if(application.getAttribute("count")==null){ count=1; }else{ count=Integer.parseInt((String)application.getAttribute("count")); count+=1; } out.print("第"+count+"次"); application.setAttribute("count",String.valueOf(count)); %> </body> 这段就行了,她就是设置一个全应用程序的变量,也就是application.getAttribute("count")当第1 次进来的时候就是null,所以count=1; ,第2次进来的时候就有值了,然后取出里面的值然后+1然后在存到全局变量中。也就是application.setAttribute("count",String.valueOf(count)); 不知道你明白没
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-06
展开全部
<%@ page language="java" import="java.util.*" pageEncoding="gbk"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <base href="<%=basePath%>"> <title>My JSP 'A.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <meta content="2" http-equiv="refresh"> <!-- 页面自动刷新的代码:每隔2s刷新一次 --> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> -->
</head> <body> <% int count=0; if(application.getAttribute("count")==null){ count=1; }else{ count=Integer.parseInt((String)application.getAttribute("count")); count+=1; } out.print("第"+count+"次"); application.setAttribute("count",String.valueOf(count)); %> </body></html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <base href="<%=basePath%>"> <title>My JSP 'A.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <meta content="2" http-equiv="refresh"> <!-- 页面自动刷新的代码:每隔2s刷新一次 --> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> -->
</head> <body> <% int count=0; if(application.getAttribute("count")==null){ count=1; }else{ count=Integer.parseInt((String)application.getAttribute("count")); count+=1; } out.print("第"+count+"次"); application.setAttribute("count",String.valueOf(count)); %> </body></html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询