• 一个面向对象的JS例子,很好的支持了开闭原则(不要重复你昨天的代码)


    <script type="text/javascript">
        //一个面向对象的JS例子,很好的支持了开闭原则
        function HtmlControl(options) {//定义一个方法
            var el = options.element;
            el.style.width = options.width;
            el.style.height = options.height;
            el.style.top = options.top;
            el.style.background = options.background;
        }
     
        var option = { //为方法定义一个参数对象
            element: document.getElementById('test'),
            left: 50,
            top: 0,
             100,
            height: 200,
            background: '#f00'
        }
        option.background = '#ff0'; //对参数对象进行扩展
     
        HtmlControl(option); //调用
    </script>
  • 相关阅读:
    解决前端从url路径上拿到的中文乱码
    仪表盘双层结构图
    element ui 按钮显示
    vue在手机上运行,打包之后显示
    echarts使用遇到的一些问题总结,比如颜色改变,文字位置调整
    微信小程序地图移动到指定的位置
    微信小程序多边形地图显示
    button取消边框
    代码审计小记 (一)
    [root-me](web-client)write up 一个大坑怎么填啊
  • 原文地址:https://www.cnblogs.com/lori/p/2178332.html
Copyright © 2020-2023  润新知