上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页
摘要: nginx配置 Nginx配置参数中文说明。#定义Nginx运行的用户和用户组user www www;#nginx进程数,建议设置为等于CPU总核心数。worker_processes 8;#全局错误日志定义类型,[ debug | info | notice | warn | error | c 阅读全文
posted @ 2017-02-12 15:24 fireporsche 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 详细地址:http://blog.csdn.net/xiaoguaihai/article/details/8705992 阅读全文
posted @ 2017-02-11 17:29 fireporsche 阅读(129) 评论(0) 推荐(0) 编辑
摘要: jquery的选择器: 其中较为详细的请参考:http://www.imooc.com/learn/418 常见的DOM事件: 阅读全文
posted @ 2017-02-11 10:27 fireporsche 阅读(116) 评论(0) 推荐(1) 编辑
摘要: 全局安装与本地安装 npm 的包安装分为本地安装(local)、全局安装(global)两种,从敲的命令行来看,差别只是有没有-g而已,比如 如果出现以下错误: 解决办法为: 本地安装 1. 将安装包放在 ./node_modules 下(运行 npm 命令时所在的目录),如果没有 node_mod 阅读全文
posted @ 2017-02-10 12:55 fireporsche 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://www.cnblogs.com/zfyouxi/p/5371317.html 一、目的 本文将介绍linux下新建文件或文件夹、删除文件或文件夹命令。 touch能够新建文件,mkdir用来新建文件夹。rm用来删除文件或文件夹。 本文将选取ubuntu14.04发行版做为描写 阅读全文
posted @ 2017-02-10 10:39 fireporsche 阅读(6545) 评论(0) 推荐(2) 编辑
摘要: linux下cat命令详解 简略版: cat主要有三大功能:1.一次显示整个文件。$ cat filename2.从键盘创建一个文件。$ cat > filename 只能创建新文件,不能编辑已有文件.3.将几个文件合并为一个文件: $cat file1 file2 > file 参数:-n 或 - 阅读全文
posted @ 2017-02-10 10:37 fireporsche 阅读(1165) 评论(0) 推荐(0) 编辑
摘要: 倒计时: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript"> window.onload=function(){ showTime(); //调用sh 阅读全文
posted @ 2017-02-09 11:08 fireporsche 阅读(169) 评论(0) 推荐(0) 编辑
摘要: HTML代码: <p id="result"></p> JS代码: var eleResult = document.getElementById("result"); if (!window.console) { window.console = {}; } console.log = funct 阅读全文
posted @ 2017-02-04 11:47 fireporsche 阅读(1297) 评论(0) 推荐(0) 编辑
摘要: <!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>下拉菜单</title> <style type="text/css"> body,ul,li{ margin:0; padding:0; font-size:13 阅读全文
posted @ 2017-01-19 17:46 fireporsche 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 1.location:本页面的location对象 对象属性图示: 对象属性: 对象方法: 2.history:是本页面的浏览历史 history对象记录了用户曾经浏览过的页面(URL),并可以实现浏览器前进与后退相似导航的功能。 注意:从窗口被打开的那一刻开始记录,每个浏览器窗口、每个标签页乃至每 阅读全文
posted @ 2017-01-19 14:10 fireporsche 阅读(674) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页