G5德军

导航

2021年11月8日 #

表格--列表

摘要: 一、无序列表1.无序列表格式<ul> <li>苹果<li> <li>梨子<li> <ul> 2.、注意事项 (1)无序列表无顺序之分 (2)<ul>只能嵌套<li> (3)<li>什么都可以放<li> (4)无序列表会带有自己的样式属性,但在实际使用时,我们会使用CSS来设置 二、无序列表 1.无序 阅读全文

posted @ 2021-11-08 10:31 G5德军 阅读(6) 评论(0) 推荐(0) 编辑

2021年11月3日 #

webapps

摘要: 1.webapps 如何找到servlet super:指向父类的方法 doGet()方法 serlvet.service(); this.doPost(热情,resp); 2.继承关系hello-http-generic 执行到Myservlet <sevlet> <servlet-name>my 阅读全文

posted @ 2021-11-03 11:44 G5德军 阅读(207) 评论(0) 推荐(0) 编辑

配置环境(servlet)

摘要: 1.WEB <servlet> <servlet-name>helloServlet</servlet-name> <servlet-class>com.stx.HelloServlet</servlet-class> </servlet> <servlet-mapping> <servlet-na 阅读全文

posted @ 2021-11-03 10:52 G5德军 阅读(31) 评论(0) 推荐(0) 编辑

JavaEE

摘要: input type="password @override protected void doGet(HttpServletRequest request,H) String username = request.getParameter("username"); String password 阅读全文

posted @ 2021-11-03 10:30 G5德军 阅读(12) 评论(0) 推荐(0) 编辑

端口

摘要: //http:127.0.0.1:8080 = localhost:8080 (浏览器中不需要输入端口)// http:127.0.0.1:8080 http默认端口 80 (浏览器中不需要输入端口)//localhost:8080 http默认端口 443//Tomcat 默认端口8080 阅读全文

posted @ 2021-11-03 09:22 G5德军 阅读(33) 评论(0) 推荐(0) 编辑

2021年11月2日 #

修改端口(改成9999)

摘要: Microsoft Windows [版本 10.0.19042.1288] (c) Microsoft Corporation。保留所有权利。 C:\Users\lenovo>sqlplus SQL*Plus: Release 11.2.0.2.0 Production on 星期二 11月 2 阅读全文

posted @ 2021-11-02 21:23 G5德军 阅读(74) 评论(0) 推荐(0) 编辑

2021年11月1日 #

浮动

摘要: 一、 块级元素:<div>独占一行 行内元素:<span>不独占一行 行内元素,可以被包含在块级元素中,反之不可以 二、display 1.inline:行内元素 2.block:块元素 3.inline-block:是块元素,但是可以内联合,在一行 4.none 三、float浮动(基本上用flo 阅读全文

posted @ 2021-11-01 11:47 G5德军 阅读(18) 评论(0) 推荐(0) 编辑

2021年10月31日 #

html

摘要: 一、符号段落 <P>:分段控制<br>:换行 <a>:连接符号 <b>:粗体 <i>:斜体 <hr>:水平分割线 <center>居中对齐 <pre>原样输出 img:插入图片/图片地址链接 <hn>:标题文字标签 二、基本结构 <!DOCTYPE html> <html lang="en"> <h 阅读全文

posted @ 2021-10-31 20:30 G5德军 阅读(18) 评论(0) 推荐(0) 编辑

2021年10月24日 #

新闻稿

摘要: <!DOCTYPE html><html lang="en" xmlns="http://www.w3.org/1999/html"><head> <p><a href="http://www.cqyti.com/index.htm" >移通</a> <a href="http://www.cqyt 阅读全文

posted @ 2021-10-24 21:05 G5德军 阅读(22) 评论(0) 推荐(0) 编辑

前端基础知识

摘要: 1.基本结构 <html> <head> </head> <body> </body> </html> 2.文字编辑语句 (HTML标签格式: <element attribute = "value"> 3.HTML基本标签 (1)换行标签<br> (2)分段控制标签<p> (3)原样显示文字标签< 阅读全文

posted @ 2021-10-24 21:01 G5德军 阅读(22) 评论(0) 推荐(0) 编辑