- 博客(22)
- 收藏
- 关注
原创 使用原生javaScript做一个通用的后台管理模板
通用模板,可以直接使用html部分<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="icon" type="image/x-icon" href="../../Imgs/admi
2023-08-25 16:04:51
488
原创 使用Vue3搭建一个完整项目
npm install express -g -g是全局安装的意思(会下载到C:\Tools\web\Nodejs\node_global\node_modules目录),不加 -g 就是默认下载到当前目录。npm config set prefix " C:\Tools\web\Nodejs\node_global" ---->仓库。npm config set cache " C:\Tools\web\Nodejs\node_cache" —>缓存。安装好后再cmd中输入。
2023-07-13 15:23:24
569
原创 如何使用原生JS创建ajax
<!DOCTYPE html><head> <meta charset="UTF-8"> <title>Document</title></head><body> <div class='box'> </div> <script> /* get 一般用来请求数据,发送不安全 post 用来发送数
2021-05-31 21:37:03
155
1
原创 JS事件类型整理
<!DOCTYPE html><head> <meta charset="UTF-8"> <title>Document</title> <style> .wrap,.box,.content{ position: relative; /* top:30px; */ } .wrap{ height
2021-05-17 17:53:52
139
原创 DOM元素的距离,制作一个返回顶部的功能
DOM元素的距离元素的距离元素.offsetLeft 获取元素到具有定位元素的父级左边的距离 没有定位父级找上一级知道浏览器元素.offsetTop 获取元素到具有定位元素的父级上边的距离 查找定位父级 元素.offsetParent 元素.getBoundingClientRect()获取元素到浏览器窗口的距离滚动页面距离 window.pageYOffset 获取页面Y轴滚动距离 IE低版本不支持 window.pageX
2021-05-12 22:09:17
133
原创 Math 数学对象常用方法
Math 数学对象常用方法Math 数学 内置对象parseInt() 装换数字类型 取整数parseFloat 取小数Math.random() 随机数,初始状态范围是0-1,可以通过乘法扩大范围Math.ceil(Number); 向上取整(往正数取值)Math.floor(Number); 向下取整Math.round(Number); 四舍五入Math.Max(Number,Number); 取最大值Math.Min(Number,Number); 取最小值Math.pow(Nu
2021-05-11 22:06:53
315
原创 JS中的DOM
JS中的DOM元素,浏览器窗口 尺寸的获取window.innerWith 浏览器视口的宽度 //不支持低版本的IEwindow.innerHeight 浏览器视口的高度 包括滚动条的宽度 一般滚动条的宽度17px document.documentElement.clientWidth //支持低版本的IE document.documentElement.clientHeight 不包含滚动条...
2021-05-11 22:04:14
73
原创 JS DOM 操作
JS DOM 操作dom就是document文档对象=》document object model1.节点文本包括空额 =》文本节点标签 =》元素节点注释属性节点 attributes文档片段节点2.元素document.getElementByID query3.获取节点或元素的一些基本操作childNodes 所有子节点children 所有元素firstChild 第一个节点firstElemen
2021-05-07 22:05:47
71
原创 使用JS定时器做一个动态时钟
setInterval(getnowDate, 1000); function getnowDate(){ let now =new Date(); console.log(now); console.log(now.toLocaleTimeString()); console.log(now.toDateString()); console.log(now.toLocaleString()); let nowT=new Date();
2021-05-06 21:16:06
698
原创 在VSCODE中设置属于自己的HTML摸版
在VSCODE中设置属于自己的HTML摸版1.找到html.json文档2.搜索html,将html.json中的代码替换成{ "自定义HTML摸版": { "prefix": "html", //新建HTML页面中直接输入html,就会带出自己的摸版1 "body": [ "<!DOCTYPE html>", "<head>", "\t<meta chars
2021-03-08 21:13:37
137
原创 C#文档的生成(如何创建文件夹及在里面生成.txt文档)
C#文档的生成(如何创建文件夹及在里面生成.txt文档)using system.IO; 需要引用1.先创建一个文件夹(文件夹和.txt文档不能直接创建,需要分开) public void Write(string Logstring) { string now_date = DateTime.Now.ToString("yyyyMMdd"); string path = "E:\\AppLog\\" + now_date;
2021-02-26 22:46:25
3136
2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人