上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: 模板: {{sum}} Js: 阅读全文
posted @ 2021-07-15 15:03 qcjdp 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 全局安装eslint 打开终端,运行npm install eslint -g全局安装ESLint。 vscode安装插件 vscode 扩展设置 依次点击 文件 > 首选项 > 设置 在settings.json 加入 //配置eslint保存时自动修复 "editor.codeActionsOn 阅读全文
posted @ 2021-07-15 10:34 qcjdp 阅读(420) 评论(0) 推荐(0) 编辑
摘要: npm --save --save-dev --production --development 区别 --save --save-dev 用于本地安装并且改变package.json 文件,--save生产依赖,--save-dev开发依赖 --production --development 用 阅读全文
posted @ 2021-07-14 11:40 qcjdp 阅读(452) 评论(0) 推荐(0) 编辑
摘要: # 全局安装淘宝cnpm npm install -g cnpm --registry=https://registry.npm.taobao.org #升级 npm cnpm install npm -g # 升级或安装 cnpm npm install cnpm -g 在用 Vue.js 构建大 阅读全文
posted @ 2021-06-30 09:44 qcjdp 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 文字居中。 此处是垂直居中,关键代码height:105px;line-height:105px;两个值要相等。 1 <div style='height:105px;line-height:105px;overflow:hidden;border:1px solid #FF0099;'>居中</d 阅读全文
posted @ 2021-06-23 17:12 qcjdp 阅读(432) 评论(0) 推荐(0) 编辑
摘要: html中的标签缩写的英文是什么? ul是unordered lists的缩写 (无序列表) li是list item的缩写 (列表项目) ol是ordered lists的缩写(有序列表) dl是definition lists的英文缩写 (自定义列表) dt是definition term的缩写 阅读全文
posted @ 2021-06-23 10:25 qcjdp 阅读(905) 评论(0) 推荐(0) 编辑
摘要: <div style='margin-top:50px;width:150px;height:150px;background-color:red;margin-left:auto;margin-right:auto;position:relative;'> <div style='backgrou 阅读全文
posted @ 2021-06-18 17:08 qcjdp 阅读(64) 评论(0) 推荐(0) 编辑
摘要: input输入框的onchange事件,要在 input 失去焦点的时候才会触发; 在输入框内容变化的时候不会触发change,当鼠标在其他地方点一下才会触发; onchange 事件也可用于单选框与复选框改变后触发的事件。 demo如下: <script> function myFunction( 阅读全文
posted @ 2021-06-08 10:35 qcjdp 阅读(1689) 评论(0) 推荐(0) 编辑
摘要: 在js中,使用setTimeout函数来延时处理逻辑,参数格式不正确时,延时效果无效 ex:function delay(){// doing something} setTimeout(delay(),5000); // 这个时候delay函数会立即执行,延时效果无效 应该改为:setTimeou 阅读全文
posted @ 2021-04-25 17:27 qcjdp 阅读(761) 评论(0) 推荐(0) 编辑
摘要: php.ini文件 ;session.save_handler = filessession.save_handler = redissession.save_path = "tcp://127.0.0.1:6379?database=1" 默认保存在文件中,文件路径由php配置文件的session 阅读全文
posted @ 2021-04-01 16:04 qcjdp 阅读(177) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页

Bill

Jerry

Evil