上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 46 下一页
摘要: 使用普通用户来安装lamp环境: 1.安装apache: sudo apt-get install apache2 输入:y 安装完成之后查看是否安装成功: apache2 -v 2.安装php sudo apt-get install php5 安装完后查看是否安装成功: php5 -v 注意:a 阅读全文
posted @ 2016-02-16 11:41 天道酬勤,坚持! 阅读(426) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <title>canvas</title> </head> <body> <canvas id="canvas" width="500" height="600" style="border:1px solid #ddd;"> 浏览器不支持 阅读全文
posted @ 2016-01-29 16:19 天道酬勤,坚持! 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 看后总结: 1.区分大小写 2.标识符是有字母下划线$开头,并有字母、下划线、数字、美元符号组成。 3.建议用驼峰法命名标识符。 4.注释: 单行:// 多行: /* */ 5.严格模式: 在js文件顶部或者函数的顶部使用"use strict";,将开启严格模式(ECMA 5.0引入) 6.每条语 阅读全文
posted @ 2016-01-28 18:17 天道酬勤,坚持! 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 看后总结: 1.js代码用得最多的两种加载方式: a)外部文件形式:<script type="text/javascript" src="jquery.min.js"></script>, 注意此种方式script标签的中间添加js代码将会被忽略 b)内部代码形式:<script type="te 阅读全文
posted @ 2016-01-28 13:58 天道酬勤,坚持! 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 看后总结: 1.javascript的组成成分:ECMAscript+DOM+BOM 阅读全文
posted @ 2016-01-28 13:42 天道酬勤,坚持! 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 1.用yum安装Apache,Mysql,PHP. 1.1安装Apache yum install httpd httpd-devel 安装完成后,用service httpd start1.2 安装mysql yum install mysql mysql-server mysql-devel C 阅读全文
posted @ 2016-01-27 16:38 天道酬勤,坚持! 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 此方法绝对可行,我已试过:http://www.mamicode.com/info-detail-84030.html 阅读全文
posted @ 2016-01-26 14:12 天道酬勤,坚持! 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1.安装node.js方法: window :https://nodejs.org/en/ linux:http://www.runoob.com/nodejs/nodejs-install-setup.htmlExpress的官网http://www.expressjs.com.cn/2.安装... 阅读全文
posted @ 2016-01-25 18:02 天道酬勤,坚持! 阅读(226) 评论(0) 推荐(0) 编辑
摘要: http://doc3.workerman.net/ 阅读全文
posted @ 2016-01-25 15:32 天道酬勤,坚持! 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 2,"0"=>8,"0x"=>16); $remainderArr = array(10=>'a', 11=>'b', 12=>"c", 13=>'d', 14=>"e", 15=>"f"); $remainderArr_rev = array_flip($remainderArr); ... 阅读全文
posted @ 2016-01-18 15:27 天道酬勤,坚持! 阅读(352) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 46 下一页