2016年12月16日

js实例2表框

摘要: <style type="text/css">#caidan{ width:500px; height:35px; border:1px solid #60F; } .xiang{ width:100px; height:35px; text-align:center; line-height:35 阅读全文

posted @ 2016-12-16 20:10 qdljyl 阅读(71) 评论(0) 推荐(0) 编辑

js实例1选择按钮

摘要: <body> <input type="checkbox" id="ck" onclick="xiugai()" />同意<input type="button" value="注册" id="btn" disabled="disabled" /> </body><script type="text 阅读全文

posted @ 2016-12-16 19:54 qdljyl 阅读(645) 评论(0) 推荐(0) 编辑

CSS的用法1

摘要: <style><!--*{ margin:0px auto; padding:0px; font-family:微软雅黑; font-size:14px;} #wai{ width:600px; height:35px; border:1px solid #666}.list{ float:left 阅读全文

posted @ 2016-12-16 19:41 qdljyl 阅读(96) 评论(0) 推荐(0) 编辑

js函数递归

摘要: //公园里有200个桃子。猴子每天吃掉10个,挑出两个坏的扔掉,问6天后剩余桃子的数量 /*var sl = 200; for(var i=0;i<6;i++){ sl = sl-12;} alert(sl);*/ //公园里有一堆桃子,猴子每天吃掉一半,挑出一个坏的扔掉,第6天的时候发现还剩1个桃 阅读全文

posted @ 2016-12-16 19:33 qdljyl 阅读(259) 评论(0) 推荐(0) 编辑

php面向对象构造一个圆类

摘要: <?phpclass Yuan{ var $banjing;//圆类的一个成员变量 //面积成员方法 function mianji() { return 3.14*$this->banjing*$this->banjing; }} //2.实例化对象//$yuan = new Yuan();//$ 阅读全文

posted @ 2016-12-16 19:12 qdljyl 阅读(244) 评论(0) 推荐(0) 编辑

mysql3

摘要: 简单查询 1.最简单查询(查所有数据)select * from info 2.查询指定列select code,name from info 3.修改结果集的列名select code as '代号',name as '姓名' from info 4.条件查询select * from info 阅读全文

posted @ 2016-12-16 18:57 qdljyl 阅读(84) 评论(0) 推荐(0) 编辑

mysql2

摘要: 1.增加insert into 表名 values(列的值,列的值)insert into 表名(列名,列名) values(值,值) 2.删除delete from 表名 delete from test delete from 表名 where 条件delete from test where 阅读全文

posted @ 2016-12-16 18:45 qdljyl 阅读(74) 评论(0) 推荐(0) 编辑

2016年12月8日

mysql1

摘要: 数据库的创建 create database test; 数据表的创建 create table test ( code varchar(20), name varchar(20) ); 删除数据库 drop database test; 删除表 drop table test; 关键字:creat 阅读全文

posted @ 2016-12-08 21:57 qdljyl 阅读(101) 评论(0) 推荐(0) 编辑

2016年12月4日

js的循环

摘要: js的循环 while循环 do while循环 分支循环 if(a=b) { } else{ } 阅读全文

posted @ 2016-12-04 13:48 qdljyl 阅读(90) 评论(0) 推荐(0) 编辑

2016年11月6日

javascript基础2

摘要: 一、数组 1.数组的定义:newArray() 它的长度是变化的,里面可以放任意类型的元素。 数组元素的赋值:a[0]=123;a[1]="hello"; 数组取值:a[i]; 数组属性:a.length;数组元素的个数,长度。 方法:a.sort();排序数组,按照第一个字符排序,a.revers 阅读全文

posted @ 2016-11-06 15:34 qdljyl 阅读(99) 评论(0) 推荐(0) 编辑

导航