2016年12月16日

js实例8日期的选择

摘要: <body> <select id="nian" onclick="biantian()"></select>年<select id="yue" onclick="biantian()"></select>月<select id="tian"></select>日 <script type="tex 阅读全文

posted @ 2016-12-16 21:24 qdljyl 阅读(125) 评论(0) 推荐(0) 编辑

js实例7表框选项

摘要: <style type="text/css">*{ margin:0px auto; padding:0px}#wai{ width:500px; height:500px}#left{ width:200px; height:500px; float:left}#zhong{ width:100p 阅读全文

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

js实例6滑动按钮

摘要: <style type="text/css">*{ margin:0px auto; padding:0px}#wai{ width:100%; height:500px;}#left{height:500px; background-color:#63C; float:left}#right{ h 阅读全文

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

js实例5进度条

摘要: <style type="text/css">*{ margin:0px auto; padding:0px}#kuang{ width:200px; height:10px; border:1px solid #60F;}#jindu{ height:10px; background-color: 阅读全文

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

js实例4下拉菜单

摘要: <style type="text/css">*{ margin:0px auto; padding:0px}#fenlei{ width:500px; height:35px;}.xiang{ float:left; width:100px; height:35px; text-align:cen 阅读全文

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

js实例3下拉列表

摘要: <style type="text/css">*{ margin:0px auto; padding:0px}#xiala{ width:200px; height:40px; border:1px solid #999;text-align:center; line-height:40px; ve 阅读全文

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

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) 编辑

导航