摘要: 容器属性 项目属性 阅读全文
posted @ 2019-04-30 10:29 a3309548 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 1 function Set() { 2 var items = {}; 3 /** 4 * 添加元素 5 * @param {[type]} value [description] 6 */ 7 this.add = function(value) { 8 ... 阅读全文
posted @ 2019-04-28 22:40 a3309548 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1 <!DOCTYPE html> 2 <html lang="en"> 3 4 <head> 5 <meta charset="UTF-8"> 6 <title>流程表格</title> 7 <style> 8 .table { 9 display: block; 10 } 11 12 .tabl 阅读全文
posted @ 2019-04-28 20:37 a3309548 阅读(417) 评论(0) 推荐(0) 编辑
摘要: concat >>连接2个或更多数组,并返回结果 every >>对数组中的每一项运行给定函数,如果该函数对每一项都返回true,则返回true filter >>对数组中的每一项运行给定函数,返回该函数会返回true的项组成新的数组 forEach >>对数组中的每一项运行给定函数,这个方法没有返 阅读全文
posted @ 2019-04-28 16:31 a3309548 阅读(294) 评论(0) 推荐(1) 编辑
摘要: 兼容性:不兼容IE7 1.左右对齐 2.居中 3.平均分 阅读全文
posted @ 2019-04-24 11:18 a3309548 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 对应Framework版本重新注册 2.0:C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i 4.0:C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regi 阅读全文
posted @ 2019-04-20 17:21 a3309548 阅读(1519) 评论(0) 推荐(1) 编辑
摘要: 第一种:rewrite server { listen 80; server_name www.test.org; root /temp/test; #当访问www.test.org/uri,如果uri资源在项目中不存在,就会重定向到www.test.org/demo/index location 阅读全文
posted @ 2019-04-19 09:47 a3309548 阅读(2874) 评论(0) 推荐(0) 编辑
摘要: server { listen 80; server_name localhost; location / { root /ect/share/nginx/html; index index.html index.htm; } #反向代理设置test.html跳转到http:xxxx:xx/test 阅读全文
posted @ 2019-04-16 21:33 a3309548 阅读(352) 评论(0) 推荐(0) 编辑
摘要: server { listen 80; server_name localhost; sendfile on; access_log /var/log/nginx/host.access.log main; #以jpg、gif、png结尾的下载路径 location ~.*\.(jpg|gif|pn 阅读全文
posted @ 2019-04-15 17:57 a3309548 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 一、SoapUI简介 SoapUI是一个开源测试工具,通过soap/http来检查、调用、实现Web Service的功能/负载/符合性测试。该工具既可作为一个单独的测试软件使用,也可利用插件集成到Eclipse,Maven2.X,Netbeans和IntelliJ中使用。SoapUI Pro是So 阅读全文
posted @ 2019-04-15 16:51 a3309548 阅读(1557) 评论(0) 推荐(1) 编辑