上一页 1 2 3 4 5 6 7 8 ··· 30 下一页
摘要: "no-alert": 0,//禁止使用alert confirm prompt "no-array-constructor": 2,//禁止使用数组构造器 "no-bitwise": 0,//禁止使用按位运算符 "no-caller": 1,//禁止使用arguments.caller或argum 阅读全文
posted @ 2020-05-26 12:51 刘浩2561179983 阅读(787) 评论(0) 推荐(0) 编辑
摘要: for(var a=1;a<=999;a++){ console.log(numm(a)) } function numm(num){ var obj={"1":"一","2":"二","3":"三","4":"四","5":"五","6":"六","7":"七","8":"八&qu 阅读全文
posted @ 2020-04-30 14:16 刘浩2561179983 阅读(1463) 评论(1) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2020-04-17 09:38 刘浩2561179983 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 在 CSS 中,1px到底是多长,为什么是这个长度。百度谷歌搜索很久说法很不一致,最后才发现最标准的还是去看万维网联盟(World Wide Web Consortium,W3C)的CSS 标准和草案(https://www.w3.org/Style/CSS/),总结以下一些概念。 像素 像素是在印 阅读全文
posted @ 2020-04-17 09:09 刘浩2561179983 阅读(394) 评论(0) 推荐(1) 编辑
摘要: const express = require('express');const app = express(); //设置允许跨域访问该服务.app.all('*', function (req, res, next) { res.header('Access-Control-Allow-Orig 阅读全文
posted @ 2019-11-29 10:22 刘浩2561179983 阅读(2672) 评论(0) 推荐(0) 编辑
摘要: function ifruo(value) { var m = /^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-]).{8,}$/; if (m.test(value)) { return true; } else { return fa 阅读全文
posted @ 2019-11-29 10:21 刘浩2561179983 阅读(239) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="pad20"> <input id="file" ref="file" type="file" /> <button id="send" @click="send">发送</button> <div id="progress">{{progress}}< 阅读全文
posted @ 2019-11-29 10:20 刘浩2561179983 阅读(4492) 评论(0) 推荐(0) 编辑
摘要: 一、前端工程化 前端工程化不单单包括前端的模块化、组件化、自动化,还包括前端性能优化,前端目录规划,前端规范化,自动化测试,发布等等一系列知识。 二、 前端设计模式 三、 前端安全性问题 1、xss跨站脚本攻击 2、CSRF跨站请求伪造 3、sql脚本注入 4、上传漏洞 四、 跨域问题的处理 六、h 阅读全文
posted @ 2019-09-26 11:37 刘浩2561179983 阅读(90664) 评论(2) 推荐(12) 编辑
摘要: var express = require('express') var app = express() var proxy = require('http-proxy-middleware') const path = require('path'); var fs = require("fs") 阅读全文
posted @ 2019-09-19 17:10 刘浩2561179983 阅读(882) 评论(0) 推荐(0) 编辑
摘要: <div style="margin-top:200px"></div> <span id="liu" onclick="AndroidcallJS()" href="myapp://">打开微信</span> <div id="show"></div> <button id="btn" oncli 阅读全文
posted @ 2019-09-19 16:05 刘浩2561179983 阅读(3636) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 30 下一页