上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 24 下一页
摘要: ##执行环境 ###执行环境的定义 执行环境(execution context)的作用是定义了变量或函数的访问数据的范围.每个执行环境都有一个变量对象(variable object),环境中定义的所有变量和函数都保存在这个对象中. (相当于宇宙-银河系-太阳系-九大行星的关系,层层包裹) ### 阅读全文
posted @ 2020-07-02 22:22 Syinho 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 在向函数传递参数的过程中,参数的传递实际上是一种复制变量的操作.变量因为分为基本类型值和引用类型值,故在传递参数这一过程中有不同的表现.但终究它们都是按值传递的. ##基本类型值与引用类型值的复制 栈内存(stack)用于保存基本类型数据和引用类型数据的指针.它的读取方式是先进后出(LIFO las 阅读全文
posted @ 2020-07-01 18:16 Syinho 阅读(243) 评论(0) 推荐(0) 编辑
摘要: ##下载字体 github下载FiraCode字体 FiraCode 在下载下的文件夹里找到ttf文件夹(使用文件夹搜索功能),里面有多个ttf文件,全选点击安装 ##配置字体 打开vscode->右下角管理->设置->文本编辑器->字体->font-family写入'Fira Code Retin 阅读全文
posted @ 2020-06-27 19:08 Syinho 阅读(944) 评论(0) 推荐(0) 编辑
摘要: <style> div { width: 150px; height: 150px; background-color: grey; position: absolute; transition: all 0.1s linear; } </style> </head> <body> <div></d 阅读全文
posted @ 2020-06-27 10:22 Syinho 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 菜鸟教程:window.getComputedStyle() 方法的使用 ##getComputedStyle方法的使用 getComputedStyle方法是window对象下的方法,它接收element的值并获取它的最终属性. <style> .div1 { width: 150px; heig 阅读全文
posted @ 2020-06-27 09:45 Syinho 阅读(277) 评论(0) 推荐(0) 编辑
摘要: ##FileReader的方法与属性 |方法名|参数|描述| | | | | |readAsText|(file,encoding)|以文本文件的方式来读取,其中encoding参数指定读取该文件时所用的字符集,该参数的默认值是UTF-8| |readAsBinaryString|(file)|以二 阅读全文
posted @ 2020-06-26 21:30 Syinho 阅读(242) 评论(0) 推荐(0) 编辑
摘要: ##FileList对象与File对象 type='file'的input标签都有两个属性:accept属性与multiple属性 accept:控制允许上传的文件类型,其属性值为一个或多个MIME类型字符串,多个MIME类型字符串之间用逗号间隔. 测试accept属性: <input type=" 阅读全文
posted @ 2020-06-25 15:23 Syinho 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 练习目的:使用localstorage进行本地储存,并借此完成类评论功能的实时提交与显示功能 html(bs4框架) <body> <div id="app"> <div class="container"> <div class="card"> <div class="card-header bg 阅读全文
posted @ 2020-06-24 22:02 Syinho 阅读(272) 评论(0) 推荐(0) 编辑
摘要: npm与cnpm 阅读全文
posted @ 2020-06-24 12:03 Syinho 阅读(185) 评论(0) 推荐(0) 编辑
摘要: nodemon官网 nodemon是用于自动重启nodejs程序的工具 全局安装 npm i -g nodemon 使用nodemon调用程序 nodemon server.js 其它命令 nodemon server.js localhost 6677//在本地6677端口启动node服务 nod 阅读全文
posted @ 2020-06-24 11:58 Syinho 阅读(194) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 24 下一页