摘要: 1.button:定义可点击的按钮(通常与 JavaScript 一起使用来启动脚本)。<br /><input id="" type="button" name="" value="按钮" /><br /><br />2.checkbox:定义复选框。<br /><input id="" type 阅读全文
posted @ 2017-06-15 18:23 杰猴。 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 浮动 float:属性{ float:none; 默认值,对象,不漂浮 float:left; 文本流向对象的右边 float:right; }; 清除浮动 clear:属性{ clear:none; 允许对象两遍都可以浮动 clear:left; 不允许左边有浮动 clear:right; 不允许 阅读全文
posted @ 2017-06-15 16:03 杰猴。 阅读(1118) 评论(0) 推荐(0) 编辑
摘要: CSS+DIV 将数据封装到div中,页面中都是有很多div组成的,通过css布局(通过css属性布局)完成这些div位置的存放,一个div就是一个盒子。 边框 border:{ --left --right --top --bottom }; #div_1{ border-top:1px soli 阅读全文
posted @ 2017-06-15 15:59 杰猴。 阅读(76) 评论(0) 推荐(0) 编辑
摘要: DISTINCT() 过滤重复 COUNT() 统计个数 SELECT COUNT(DISTINCT(cateid)) FROM cs_goods ORDER BY cateid SELECT COUNT(*) FROM cs_goods SUM() 求和 求price列总和 SELECT SUM(price) FROM cs_g... 阅读全文
posted @ 2017-04-18 21:13 杰猴。 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 传值:$b=$a //将a变量的值传值给b变量。 //调式传值$a=100;$b=200;$b=$a;echo $b;//100$a=300;echo $b;//100$b=300;echo $a;//300unset ($a);echo $a;echo $b; 传引用: $b=&$a //将a变量 阅读全文
posted @ 2017-03-30 11:26 杰猴。 阅读(1680) 评论(0) 推荐(0) 编辑
摘要: 第1种方法: 复制代码代码如下: function get_extension($file) { substr(strrchr($file, '.'), 1); } 第2种方法: 复制代码代码如下: function get_extension($file) { return substr($fil 阅读全文
posted @ 2017-03-29 10:49 杰猴。 阅读(441) 评论(0) 推荐(0) 编辑
摘要: <?phpecho "<meta charset='utp-8'>";/*if("1"=="0"){ echo "成立";}else{ echo "不成立";}$a=0;echo ("Null"==false)?"成立":"不成立";echo ($a=="fales")?"成立":"不成立";if( 阅读全文
posted @ 2017-03-28 09:25 杰猴。 阅读(265) 评论(0) 推荐(0) 编辑