上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 39 下一页

2018年4月25日

记事本

摘要: 1.远程连接工具 : MobaXterm:“十项全能”的远程终端登录软件 2.两个DIV 左边宽度固定,右边宽度铺满 方法1 <div> <div style="width:200px; float:left;">左</div> <div style="overflow:hidden;">右</di 阅读全文

posted @ 2018-04-25 09:51 童彪 阅读(112) 评论(0) 推荐(0) 编辑

NodeJs-Linux环境初步

摘要: 1.Express 是一个简洁而灵活的 node.js Web应用框架, 提供了一系列强大特性帮助你创建各种 Web 应用,和丰富的 HTTP 工具。 使用 Express 可以快速地搭建一个完整功能的网站。 Express 框架核心特性: 可以设置中间件来响应 HTTP 请求。 定义了路由表用于执 阅读全文

posted @ 2018-04-25 07:51 童彪 阅读(129) 评论(0) 推荐(0) 编辑

2018年4月24日

window.btoa()方法;使字符编码成base64的形式

摘要: atob() 函数能够 解码 通过base-64编码的字符串数据。相反地, btoa() 函数能够从二进制数据“字符串” 创建 一个base-64编码的ASCII字符串。 阅读全文

posted @ 2018-04-24 13:29 童彪 阅读(188) 评论(0) 推荐(0) 编辑

2018年4月22日

centOs7 忘记root密码

摘要: 记录:https://blog.csdn.net/niu_hao/article/details/52882895 阅读全文

posted @ 2018-04-22 17:21 童彪 阅读(100) 评论(0) 推荐(0) 编辑

2018年4月20日

window.addEventListener()/window.postMessage(”text“, '*')

摘要: 1.设置监听 window.addEventListener('message', function (msg) { console.log(msg.data);}) 2.发送 message window.postMessage(”message“, '*'); 实现多页面通讯; 使用postMe 阅读全文

posted @ 2018-04-20 14:01 童彪 阅读(3072) 评论(0) 推荐(0) 编辑

2018年4月17日

$(function(){})理解

摘要: $(function(){}) = jQuery(function(){}) = jQuery(document).ready(function(){ }); 阅读全文

posted @ 2018-04-17 11:03 童彪 阅读(158) 评论(0) 推荐(0) 编辑

跨域资源共享/option 请求产生原因

摘要: https://blog.csdn.net/hfahe/article/details/7730944 阅读全文

posted @ 2018-04-17 10:54 童彪 阅读(132) 评论(0) 推荐(0) 编辑

2018年4月15日

Angular: Can't bind to 'ngModel' since it isn't a known property of 'input'问题解决

摘要: https://blog.csdn.net/h363659487/article/details/78619225 最初使用 [(ngModel)] 做双向绑定时,如果遇见Angular: Can't bind to 'ngModel' since it isn't a known property 阅读全文

posted @ 2018-04-15 23:11 童彪 阅读(264) 评论(0) 推荐(0) 编辑

TypeScript - 基本类型系统

摘要: 来自:https://www.cnblogs.com/whitewolf/p/4095979.html 对于程序来说我们需要基本的数据单元,如:numbers, strings, structures, boolean 等数据结构。在TypeScript中我们支持很多你所期望在JavaScript中 阅读全文

posted @ 2018-04-15 22:54 童彪 阅读(114) 评论(0) 推荐(0) 编辑

2018年4月12日

盒子模型

摘要: 1. 在标准模式下,一个块的总宽度= width + margin(左右) + padding(左右) + border(左右) 在怪异模式下width已经包含了padding和border值,一个块的总宽度= width + margin(左右)2 .当设置为box-sizing:content- 阅读全文

posted @ 2018-04-12 22:48 童彪 阅读(101) 评论(0) 推荐(0) 编辑

上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 39 下一页

导航