js
小博主
这个作者很懒,什么都没留下…
展开
-
js常用知识点
单选按钮:运用三木运算符<input type="radio" name="sex" id="man" checked>男<input type="radio" name="sex">女<button id="btn">获取性别</button><p id="title">当前选择的性别是:</p><scri...原创 2019-10-28 23:03:05 · 264 阅读 · 0 评论 -
原生js仿淘宝&京东轮播图
1:仿淘宝(改left值)<html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> *{padding: 0; margin: 0; list-style: ...原创 2019-09-21 22:19:32 · 403 阅读 · 0 评论 -
js数组
一操作数组?1map的使用:不改变原数组,返回一个新的数组let arr = [1, 2, 3, 4, 5];let c = arr.map((res, index) => { console.log("数组值" + res, "数组下标" + index); return res * index;});console.log('新数组'+c,'原素组' +arr);...原创 2019-11-26 20:35:42 · 100 阅读 · 0 评论