宗策

导航

2020年5月7日 #

JavaScript-数组案例

摘要: 案例一: 遍历数组 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <script type="text/javascript"> function myfn(){ var i 阅读全文

posted @ 2020-05-07 17:49 宗策 阅读(171) 评论(0) 推荐(0) 编辑

JavaScript-div效果案例展示

摘要: 案例1: 代码: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <style type="text/css"> #big{ width: 150px; height: 150 阅读全文

posted @ 2020-05-07 17:23 宗策 阅读(147) 评论(0) 推荐(0) 编辑

正则表达式

摘要: 正则表达式 . :匹配任意字符 除了换行 \w : 匹配任意数字、字母、下划线 \d : 匹配任意数字 \s : 匹配任意空白 ^ : 开头 $ : 结尾 - 正则表达式的应用场景: 1. 查找内容 2. 校验文本 - 创建正则对象的两种方式: 1. 格式: var reg = /规则/模式(i:忽 阅读全文

posted @ 2020-05-07 17:00 宗策 阅读(171) 评论(0) 推荐(0) 编辑

JavaScript-对String,数,数组,日期使用总结

摘要: String使用总结 1. 创建字符串 - var s1 = "aaa";//单引号或双引号都可以 - var s2 = new String("aaa"); 2. 把字符串转数值 - parseInt(30.05) - parseFloat("4") "4.5"->4.5 "4"->4 - Num 阅读全文

posted @ 2020-05-07 16:28 宗策 阅读(176) 评论(0) 推荐(0) 编辑