上一页 1 2 3 4 5 6 7 8 9 ··· 53 下一页
摘要: 回显主页和favicon 找一个图片 写index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>主页</title> </head> <body> <h1>主页</h1> <hr> </body 阅读全文
posted @ 2023-03-31 14:35 漁夫 阅读(28) 评论(0) 推荐(0)
摘要: 请求信息十六进制显示 package web; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.ServerSocket; import java 阅读全文
posted @ 2023-03-31 11:47 漁夫 阅读(51) 评论(0) 推荐(0)
摘要: 搭建虚拟服务器环境 创建项目 package web; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.ServerSocket; import 阅读全文
posted @ 2023-03-31 10:21 漁夫 阅读(17) 评论(0) 推荐(0)
摘要: axios <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>axios</title> </head> <body> <!-- <script src="https://unpkg.com/axios/d 阅读全文
posted @ 2023-03-30 16:54 漁夫 阅读(18) 评论(0) 推荐(0)
摘要: 多个Ajax请求的并发执行 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>多个 Ajax 请求的并发执行</title> <style> /* css reset */ * { padding: 0; 阅读全文
posted @ 2023-03-30 16:10 漁夫 阅读(43) 评论(0) 推荐(0)
摘要: 搜索提示 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"/> <title>搜索提示</title> </head> <body> <input id="search" type="text"> <ul id="result 阅读全文
posted @ 2023-03-30 14:59 漁夫 阅读(24) 评论(0) 推荐(0)
摘要: 使用Promise改造封装好的AJAX 修改index.js import Ajax from 'ajax.js'; import { ERROR_ABOUT } from './封装AJAX4'; import { ERROR_TIMEOUT } from './封装AJAX4'; import 阅读全文
posted @ 2023-03-30 13:59 漁夫 阅读(20) 评论(0) 推荐(0)
摘要: 封装AJAX 封装Ajax <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>封装Ajax</title> </head> <body> <script type="module"> /* const url = 'https:/ 阅读全文
posted @ 2023-03-30 13:12 漁夫 阅读(19) 评论(0) 推荐(0)
摘要: FormData 使用Ajax提交表单 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>FormData</title> </head> <body> <form id="login" action="https://www.i 阅读全文
posted @ 2023-03-29 16:50 漁夫 阅读(9) 评论(0) 推荐(0)
摘要: XHR的属性 responseType和response属性 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>responseType和response属性</title> </head> <body> <script> //1 阅读全文
posted @ 2023-03-29 16:46 漁夫 阅读(377) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 53 下一页