摘要: const { default: axios } = require("axios") const qs = require('qs') function regsoleKey(config) { const { method, url, params, data } = config; retur 阅读全文
posted @ 2024-04-15 14:56 howhy 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1、!important; 2、Id选择器 3、类选择器 属性选择器 伪类选择器 4、元素选择器 伪元素选择器(::before ::after) (a,b,c)算法 a id选择器个数这 b 类选择器 属性选择器 伪类选择器和 c 元素选择器 伪元素选择器和 CSS浏览器渲染: 1、样式声明:所有 阅读全文
posted @ 2024-04-15 09:37 howhy 阅读(1) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2024-04-13 10:51 howhy 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2024-04-13 10:07 howhy 阅读(1) 评论(0) 推荐(0) 编辑
摘要: <input type="text" inputmode="email" accesskey="b" tabindex="1"> ##inputmode是键盘 accesskey是快捷键fouse Alt+accesskey 阅读全文
posted @ 2024-04-12 17:49 howhy 阅读(2) 评论(0) 推荐(0) 编辑
摘要: arr = [1, 2, 4, 5] arrObj = Object.assign([], arr) //自定义实现数组 unshift Array.prototype.myunshift = function (...eles) { const len = this.length for (let 阅读全文
posted @ 2024-03-27 16:53 howhy 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2024-03-18 16:52 howhy 阅读(6) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2024-03-18 16:37 howhy 阅读(1) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2024-03-18 16:13 howhy 阅读(1) 评论(0) 推荐(0) 编辑
摘要: overflow: hidden; white-space: nowrap; text-overflow: ellipsis; 阅读全文
posted @ 2024-03-13 15:55 howhy 阅读(1) 评论(0) 推荐(0) 编辑