摘要:
使用普通用户来安装lamp环境: 1.安装apache: sudo apt-get install apache2 输入:y 安装完成之后查看是否安装成功: apache2 -v 2.安装php sudo apt-get install php5 安装完后查看是否安装成功: php5 -v 注意:a 阅读全文
摘要:
<!DOCTYPE html> <html> <head> <title>canvas</title> </head> <body> <canvas id="canvas" width="500" height="600" style="border:1px solid #ddd;"> 浏览器不支持 阅读全文
摘要:
看后总结: 1.区分大小写 2.标识符是有字母下划线$开头,并有字母、下划线、数字、美元符号组成。 3.建议用驼峰法命名标识符。 4.注释: 单行:// 多行: /* */ 5.严格模式: 在js文件顶部或者函数的顶部使用"use strict";,将开启严格模式(ECMA 5.0引入) 6.每条语 阅读全文
摘要:
看后总结: 1.js代码用得最多的两种加载方式: a)外部文件形式:<script type="text/javascript" src="jquery.min.js"></script>, 注意此种方式script标签的中间添加js代码将会被忽略 b)内部代码形式:<script type="te 阅读全文
摘要:
看后总结: 1.javascript的组成成分:ECMAscript+DOM+BOM 阅读全文
摘要:
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 阅读全文
摘要:
此方法绝对可行,我已试过:http://www.mamicode.com/info-detail-84030.html 阅读全文
摘要:
1.安装node.js方法: window :https://nodejs.org/en/ linux:http://www.runoob.com/nodejs/nodejs-install-setup.htmlExpress的官网http://www.expressjs.com.cn/2.安装... 阅读全文
摘要:
http://doc3.workerman.net/ 阅读全文
摘要:
2,"0"=>8,"0x"=>16); $remainderArr = array(10=>'a', 11=>'b', 12=>"c", 13=>'d', 14=>"e", 15=>"f"); $remainderArr_rev = array_flip($remainderArr); ... 阅读全文