上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 31 下一页
  2021年6月4日
摘要: const crypto = require("crypto"); /** * 参数讲解: * 加密数据 * data * 加密方式 * md5 sha1 sha256 sha512 * 加密形式 * 1.使用加密算法加密 * 2.获取密文中所有的数字 * 3.在数字当中,从第二位开始,获取10位数 阅读全文
posted @ 2021-06-04 18:31 文种玉 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 注意:搜索 终端:新建集成终端 阅读全文
posted @ 2021-06-04 16:44 文种玉 阅读(149) 评论(0) 推荐(0) 编辑
  2021年6月1日
摘要: 工作目录(Working Directory) 暂存区(Stage/Index) 本地仓库(Local Repository 或 Git Directory) 远程仓库(Remote Repository) git的本地仓库基本提交 - 初始化仓库: - git init 将本地文件夹转化成Git仓 阅读全文
posted @ 2021-06-01 18:34 文种玉 阅读(86) 评论(0) 推荐(0) 编辑
  2021年5月28日
摘要: ![](https://img2020.cnblogs.com/blog/1341065/202105/1341065-20210528192410968-1139586987.png) ## 1. 万能提示 `trigger suggest` ![](https://img2020.cnblogs 阅读全文
posted @ 2021-05-28 19:27 文种玉 阅读(111) 评论(0) 推荐(0) 编辑
  2021年5月27日
摘要: <script> /** * 生成器函数,带参数 */ function * gun(arg){ console.log("***",arg); //*** AAA let one = yield "111"; console.log("***",one); //*** CCC let two = 阅读全文
posted @ 2021-05-27 14:03 文种玉 阅读(65) 评论(0) 推荐(0) 编辑
  2021年5月21日
摘要: ![](https://img2020.cnblogs.com/blog/1341065/202105/1341065-20210521182229520-964706609.png) 阅读全文
posted @ 2021-05-21 18:23 文种玉 阅读(91) 评论(0) 推荐(0) 编辑
  2021年5月20日
摘要: #错误代码展示 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> div { width: 200px; height: 200px; background: #58 阅读全文
posted @ 2021-05-20 15:12 文种玉 阅读(130) 评论(0) 推荐(0) 编辑
摘要: //箭头函数 function fn(n){ return n+n; } const fn = function (n){ return n+n; } let fn = (n)=>{ return n + n; } //注意只有一个参数 let fn = n=>{ return n+n; } //方 阅读全文
posted @ 2021-05-20 14:50 文种玉 阅读(70) 评论(0) 推荐(0) 编辑
  2021年5月18日
摘要: 1.子节点对象与子元素的区别 * childNodes 子节点 * children 子元素 关于子节点对象 * 参考 https://www.cnblogs.com/Listener-wy/p/14735166.html 2.获取父节点和父元素: * JS: * 获取父节点 * parentNod 阅读全文
posted @ 2021-05-18 19:21 文种玉 阅读(162) 评论(0) 推荐(0) 编辑
摘要: ##定义和用法 selectedIndex 返回的是下拉框当中被选中的索引下标 <html> <head> <script type="text/javascript"> function getIndex() { var x=document.getElementById("mySelect") 阅读全文
posted @ 2021-05-18 19:18 文种玉 阅读(197) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 31 下一页