上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 33 下一页
  2021年5月27日
摘要: <script> /** * 生成器函数,带参数 */ function * gun(arg){ console.log("***",arg); //*** AAA let one = yield "111"; console.log("***",one); //*** CCC let two = 阅读全文
posted @ 2021-05-27 14:03 文种玉 阅读(66) 评论(0) 推荐(0) 编辑
  2021年5月21日
摘要: ![](https://img2020.cnblogs.com/blog/1341065/202105/1341065-20210521182229520-964706609.png) 阅读全文
posted @ 2021-05-21 18:23 文种玉 阅读(91) 评论(0) 推荐(0) 编辑
  2021年5月20日
摘要: #错误代码展示 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> div { width: 200px; height: 200px; background: #58 阅读全文
posted @ 2021-05-20 15:12 文种玉 阅读(137) 评论(0) 推荐(0) 编辑
摘要: //箭头函数 function fn(n){ return n+n; } const fn = function (n){ return n+n; } let fn = (n)=>{ return n + n; } //注意只有一个参数 let fn = n=>{ return n+n; } //方 阅读全文
posted @ 2021-05-20 14:50 文种玉 阅读(72) 评论(0) 推荐(0) 编辑
  2021年5月18日
摘要: 1.子节点对象与子元素的区别 * childNodes 子节点 * children 子元素 关于子节点对象 * 参考 https://www.cnblogs.com/Listener-wy/p/14735166.html 2.获取父节点和父元素: * JS: * 获取父节点 * parentNod 阅读全文
posted @ 2021-05-18 19:21 文种玉 阅读(173) 评论(0) 推荐(0) 编辑
摘要: ##定义和用法 selectedIndex 返回的是下拉框当中被选中的索引下标 <html> <head> <script type="text/javascript"> function getIndex() { var x=document.getElementById("mySelect") 阅读全文
posted @ 2021-05-18 19:18 文种玉 阅读(205) 评论(0) 推荐(0) 编辑
  2021年5月13日
摘要: ![](https://img2020.cnblogs.com/blog/1341065/202105/1341065-20210513174546777-645101456.png) # 代码如下 ```js &::after{ content:''; width: 40%; display: b 阅读全文
posted @ 2021-05-13 17:46 文种玉 阅读(424) 评论(0) 推荐(1) 编辑
  2021年5月12日
摘要: ![](https://img2020.cnblogs.com/blog/1341065/202105/1341065-20210512120255299-908235001.png) 阅读全文
posted @ 2021-05-12 09:01 文种玉 阅读(118) 评论(0) 推荐(0) 编辑
  2021年5月11日
摘要: html,body{ height: 100%; overflow: hidden; } 阅读全文
posted @ 2021-05-11 19:17 文种玉 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 1.给body设置宽高并配置背景颜色 代码如下 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> *{ margin: 0; padding: 0; } /*如果没有 阅读全文
posted @ 2021-05-11 18:02 文种玉 阅读(152) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 33 下一页