摘要: http中get请求和post请求的区别。 阅读全文
posted @ 2020-05-18 09:33 留下成长的足迹 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1.let 声明,与var声明相比,定义局部变量,1.不会出现变量提升。2.不允许重复声明,3。声明的变量只有在当前作用域有效。 2.const 声明一个只读的常量。常量:值不可以改变的量,声明的变量必须赋值。 延展操作符(Spread operator) . . . 将数组表达式或者string在 阅读全文
posted @ 2020-05-15 18:01 留下成长的足迹 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 待处理,diaplay:flex. 阅读全文
posted @ 2020-05-15 17:45 留下成长的足迹 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 如果需要选择紧接在另一个元素后的元素,而且二者有相同的父元素,可以使用相邻兄弟选择器(Adjacent sibling selector)。 例如,如果要增加紧接在 h1 元素后出现的段落的上边距,可以这样写: h1 + p {margin-top:50px;} 伪类:a:link {color: 阅读全文
posted @ 2020-05-15 15:18 留下成长的足迹 阅读(2461) 评论(0) 推荐(0) 编辑
摘要: 表单类型 | 类型 | 使用示例 | 含义 | | | | | | **email** | <input type="email"> | 输入邮箱格式 | | **tel** | <input type="tel"> | 输入手机号码格式 | | **url** | <input type="url 阅读全文
posted @ 2020-05-15 14:53 留下成长的足迹 阅读(639) 评论(0) 推荐(0) 编辑
摘要: 1.打开IIS inetmgr 2.打开远程连接 mstsc 3.打开命令行窗口 cmd 未完待续。。。 阅读全文
posted @ 2020-05-14 14:02 留下成长的足迹 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 1.更新一个字段的类型 alter table VendorFormalter column applicationCode char(30) 2.添加/删除一个字段 if Exists( select * from syscolumns where id = OBJECT_ID('Chop_App 阅读全文
posted @ 2020-05-13 18:47 留下成长的足迹 阅读(1441) 评论(0) 推荐(0) 编辑
摘要: MVC中Area中AreaRegistration.cs中配置路由的目的是什么? 有一次AreaRegistration.cs中的命名空间改为WitBPM.Areas.Customer.Controllers,而controller中的namespace还是WitBPM_Invoice.Areas. 阅读全文
posted @ 2020-05-13 17:57 留下成长的足迹 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 请始终为按钮规定 type 属性。Internet Explorer 的默认类型是 "button",而其他浏览器中(包括 W3C 规范)的默认值是 "submit"。 阅读全文
posted @ 2020-05-13 13:29 留下成长的足迹 阅读(711) 评论(0) 推荐(0) 编辑
摘要: window.close()关闭一个窗口无效,那应该用什么方法? 阅读全文
posted @ 2020-05-13 13:20 留下成长的足迹 阅读(558) 评论(1) 推荐(1) 编辑