会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小强哥in
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
12
13
14
15
16
17
18
19
20
···
26
下一页
2020年12月11日
2020/12/11
摘要: 使用<jsp:forward>完成跳转 通常会编写专门的登录成功和登录失败页面,在登录成功或者登录失败后会跳转到这些专门的页面。要跳转到某个页面,可以使用 JSP 提供的<jsp:forward>标签。<jsp:forward>标签的作用相当于方法调用,在执行当前文件的过程中,如果遇到了这个标签,会
阅读全文
posted @ 2020-12-11 00:26 小强哥in
阅读(82)
评论(0)
推荐(0)
2020年12月10日
2020/12/10
摘要: <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Ins
阅读全文
posted @ 2020-12-10 20:24 小强哥in
阅读(78)
评论(0)
推荐(0)
2020年12月9日
2020/12/09
摘要: <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Ins
阅读全文
posted @ 2020-12-09 00:18 小强哥in
阅读(79)
评论(0)
推荐(0)
2020年12月8日
2020/12/08
摘要: 选课的一些jsp层 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8">
阅读全文
posted @ 2020-12-08 20:50 小强哥in
阅读(92)
评论(0)
推荐(0)
2020年12月7日
2020/12/07
摘要: 选课系统的dao层 package Dao; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.Statement; import java.util.ArrayList; import ja
阅读全文
posted @ 2020-12-07 20:48 小强哥in
阅读(96)
评论(0)
推荐(0)
2020年12月5日
2020/12/05周报
摘要: 这周从网上学习了一些关于时间处理的web前端的知识 下周继续学习web
阅读全文
posted @ 2020-12-05 23:21 小强哥in
阅读(68)
评论(0)
推荐(0)
2020年12月4日
2020/12/4
摘要: 得到时间 <body> <p id="demo">点击按钮把日期和时间转换成字符串。</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var d = new Date(); var x =
阅读全文
posted @ 2020-12-04 22:57 小强哥in
阅读(115)
评论(0)
推荐(0)
2020年12月3日
2020/12/3
摘要: 一 设置了特定的日期 (2020 年 1 月 14 日): var myDate=new Date(); myDate.setFullYear(2020,1,14); 设置为 4 天后的日期: var myDate=new Date(); myDate.setDate(myDate.getDate(
阅读全文
posted @ 2020-12-03 23:08 小强哥in
阅读(94)
评论(0)
推荐(0)
2020年11月14日
2020/11/14周报
摘要: 一. 这周学习了看的那本书 学习了其中的一些scrip语句 一些判断的方法 二.正则表达式
阅读全文
posted @ 2020-11-14 20:01 小强哥in
阅读(60)
评论(0)
推荐(0)
2020年11月13日
2020/11/13
摘要: 一. 使用scrip来判断是不是整数 // 判断是否是整数 function isNumber(str) { for(i=0;i<str.length;i++) { // 每一位都是 0~9 的数字,如果是第 1 位,则可以是“-”号 if(str.charAt(i)>='0' && str.cha
阅读全文
posted @ 2020-11-13 19:57 小强哥in
阅读(67)
评论(0)
推荐(0)
上一页
1
···
12
13
14
15
16
17
18
19
20
···
26
下一页
公告