- 博客(5)
- 资源 (1)
- 收藏
- 关注
原创 浅学API--倒计时
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>D.
2021-07-14 15:02:36 331
原创 浅学API--全选与反选
<style> * { padding: 0; margin: 0; } .wrap { width: 300px; margin: 100px auto 0; } table { border-collapse: collapse; border-spacin...
2021-07-11 19:49:36 164
原创 浅学API--隔行变色
<style> *{ margin: 0; padding: 0; list-style: none; } .bg { background-color: skyblue; } </style><body> <ul> <li>1</li>...
2021-07-11 11:44:43 102
原创 API中获取页面元素
1、根据ID获取语法:document.getElementById(id) 作用:根据ID获取元素对象 参数:id值,区分大小写的字符串返回值:元素对象 或 null<body> <div id="time">2019-9-9</div> <script> var timer = document.getElementById('time'); ...
2021-07-10 10:10:33 193
原创 格式化日期
<script> var now = new Date(); console.log(now); console.log(now.getFullYear()); // 2021 console.log(now.getMonth() + 1); //给的7月,但是获取的是6 索引号 + 1 = 当前月份 所以加1 c...
2021-07-07 14:45:42 104
student-master.zip
2019-09-18
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人