美文网首页
封装函数作业回顾

封装函数作业回顾

作者: 松鼠煮鳜鱼 | 来源:发表于2019-02-02 10:38 被阅读0次

作业:

image.png

分析:all div 加 class="red"

  1. 判断 后 获取 选择器or节点
    选择器---返回hash: document.querySelectorAll | document.querySelector区别


    image.png

    节点---放到hash里: instanceof Node

nodes = { 0:nodeorSelect, length:1 } 
  1. 遍历这堆hash
    forEach() 方法对数组的每个元素执行一次提供的函数。
  2. .classList.add(形参名)
    .textContent = 形参名
    如果你设置了 textContent 属性, 子节点会被移除!!!!!
nodes.addClass = function (形参) {
                for (let i = 0; i < nodes.length; i++) {
                    nodes[i].classList.add(形参)
                }
            }
nodes.forEach.

4.往自己构造的函数squirreldom里挂
window.squirreldom = function(){
let nodes
return nodes
}

5.用一用

window.$ = squirreldom
        var $div = $('div')
        $div.addClass('red')
        $div.setText('hi')

代码:

<!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>Document</title>
    <!-- <script src="http://code.jquery.com/jquery-latest.js"></script> -->
    <style>
        #apple {
            width: 100px;
            height: 100px;
            border: 1px solid green;
        }

        #pear {
            width: 100px;
            height: 100px;
            border: 1px solid green;
        }

        .red {
            background-color: red;
        }
    </style>
</head>

<body>
    <ul>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
    </ul>
        <div id="apple"></div>
        <div id="pear"></div>

    <script>
        window.jQuery = function (nodeorSelect) {
            let nodes
            if (typeof nodeorSelect === 'string') {
                nodes = document.querySelectorAll(nodeorSelect)
            } else if (nodes instanceof Node) {
                nodes = {
                    0: nodeorSelect,
                    length: 1
                }
            }
            //加一个属性
            nodes.addClass = function (name) {
                for (let i = 0; i < nodes.length; i++) {
                    nodes[i].classList.add(name)
                }
            }

            //加一个属性 forEach箭头函数 (不会)
            // nodes.forEach((color) => nodes.classList.add(color))

            //加一个属性 forEach函数 (不会)
            // nodes.addClass= function()
            // }

            //加一组属性(不会)
            // nodes.addClass = function (classes) {
            //     classes.forEach((value) => {
            //         for (let i = 0; i < nodes.length; i++) {
            //             nodes[i].classList.add(value)
            //         }
            //     })
            // }
        
            nodes.setText = function (text) {
                for (let i = 0; i < nodes.length; i++) {
                    nodes[i].textContent = text
                }
            }
            return nodes
        }

        window.$ = jQuery

        var $div = $('div')
        console.log($div)
        $div.addClass('red')
        $div.setText('hi')

    </script>

</body>

</html>

相关文章

  • 封装函数作业回顾

    作业: 分析:all div 加 class="red" 判断 后 获取 选择器or节点选择器---返回hash...

  • oracle 过程实例 函数 以及table的封装

    过程实例已备后期回顾 函数 类型 table分装 封装类型 封装table

  • 【第16天】python全栈从入门到放弃

    1. 函数的知识回顾 以功能为导向,封装一个功能 2 函数的返回值return return:中止函数,并将返回值...

  • 4、TS 类

    1、类的三个特点:封装、继承、多态入门重点体验封装 2、回顾js中的构造函数 3、class用法 关于es6 cl...

  • 2018-09-26 day25

    1.回顾 1.window 2.document 3.调用匿名函数 4.js事件 js库封装 5.回调函数取事件源...

  • python函数的简单封装

    函数的简单封装 实现对文件读写操作的封装 file_function.py(实现函数的封装) (进行函数调用)

  • 代码组织:函数(def)

    代码组织:函数(def) 封装一个功能 封装 容器是对数据的封装函数是对语句的封装类是对方法和属性的封装 函数(f...

  • JS基础案例22-函数练习

    1-100之间的和用函数封装。 函数封装求圆的周长。 函数封装求圆的面积。 函数封装判断2个数,3个数的大小。 判...

  • 05-kotlin-变量与输出

    kotlin回顾 回顾下以前我们敲过的案例 作业: 编写main函数, 在控制台打印 I love kotlin ...

  • Python函数详解

    作业讲解 认识Python函数 函数的本质就是功能的封装。使用函数可以大大提高编程的效率与程序的可读性。 局部变量...

网友评论

      本文标题:封装函数作业回顾

      本文链接:https://www.haomeiwen.com/subject/owtjsqtx.html