上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <button id="btn">我是一个按钮</button> <script type="text/javascript"> 1、DOM简介 /* * 浏览器已经为我们提供 文档节点 对象这个对象是window属性 * 可以在页 阅读全文
posted @ 2019-09-04 10:44 Coding_Changes_LIfe 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 上一张 下一张 阅读全文
posted @ 2019-09-04 09:30 Coding_Changes_LIfe 阅读(585) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript"> 1. 正则表达式 /* * 正则表达式 * - admin@atguigu.com * - admin@.com adminatguigu.com * - 邮件的规则: * 1.前边可以是xxxx乱 阅读全文
posted @ 2019-09-03 14:55 Coding_Changes_LIfe 阅读(395) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript"> 1. Date对象 /* * Date对象 * - 在JS中使用Date对象来表示一个时间 */ //创建一个Date对象 //如果直接使用构造函数创建一个Date对象,则会封装为当前代码执行的时间 阅读全文
posted @ 2019-09-03 09:32 Coding_Changes_LIfe 阅读(230) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript"> 1.使用构造函数创建数组 /* * 内建对象 * 宿主对象 * 自定义对象 * * 数组(Array) * - 数组也是一个对象 * - 它和我们普通对象功能类似,也是用来存储一些值的 * - 不同 阅读全文
posted @ 2019-09-03 08:09 Coding_Changes_LIfe 阅读(128) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script type="text/javascript"> 1、函数简介 函数也是一个对象,也具有普通对象的功能,除了基本数据类型外,一切都是对象 - 函数中可以封装一些代码,在需要的时候可以去调用函数来执行这些代码 - 使用t 阅读全文
posted @ 2019-08-31 21:10 Coding_Changes_LIfe 阅读(3973) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript"> /* * JS中数据类型 * - String 字符串 * - Number 数值 * - Boolean 布尔值 * - Null 空值 * - Undefined 未定义 * - 以上这五种类型 阅读全文
posted @ 2019-08-31 20:06 Coding_Changes_LIfe 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 本月完成以下任务: 1.完成韩顺平HTML+css+JS课程的观看,看完后一定要敲一遍代码 2、完成PHP编程的观看,5月份已经扫看了一遍,不仔细,这次一定要每个案例都要敲一遍代码,做好总结。 3、完成Harvard CS 50 的观看,看完后,写一篇总结文章 4、完成mysql的基础的观看,也要敲 阅读全文
posted @ 2019-08-31 17:30 Coding_Changes_LIfe 阅读(143) 评论(0) 推荐(0) 编辑
摘要: Title typeof 的返回值是字符串,取值范围是{Number,Boolean,String,NUll,object,undefined} 1、 加法:(字符串相加比较特殊) res = 1 + true; 2 res = 1 + null; 1 res = 1 + NaN; NaN 任... 阅读全文
posted @ 2019-08-31 16:16 Coding_Changes_LIfe 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-08-31 11:40 Coding_Changes_LIfe 阅读(1697) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页