摘要:
<script> /** * 生成器函数,带参数 */ function * gun(arg){ console.log("***",arg); //*** AAA let one = yield "111"; console.log("***",one); //*** CCC let two = 阅读全文
摘要:
![](https://img2020.cnblogs.com/blog/1341065/202105/1341065-20210521182229520-964706609.png) 阅读全文
摘要:
#错误代码展示 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> div { width: 200px; height: 200px; background: #58 阅读全文
摘要:
//箭头函数 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; } //方 阅读全文
摘要:
1.子节点对象与子元素的区别 * childNodes 子节点 * children 子元素 关于子节点对象 * 参考 https://www.cnblogs.com/Listener-wy/p/14735166.html 2.获取父节点和父元素: * JS: * 获取父节点 * parentNod 阅读全文
摘要:
##定义和用法 selectedIndex 返回的是下拉框当中被选中的索引下标 <html> <head> <script type="text/javascript"> function getIndex() { var x=document.getElementById("mySelect") 阅读全文
摘要:
![](https://img2020.cnblogs.com/blog/1341065/202105/1341065-20210513174546777-645101456.png) # 代码如下 ```js &::after{ content:''; width: 40%; display: b 阅读全文
摘要:
![](https://img2020.cnblogs.com/blog/1341065/202105/1341065-20210512120255299-908235001.png) 阅读全文