码迷,mamicode.com
首页 > 其他好文 > 详细

原型继承的小案例

时间:2016-08-09 01:59:30      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style>
        .current{
            background-color: greenyellow;
        }
    </style>
</head>
<body>
<script>
    var element = {
        /*追加dom元素到node节点中*/
        appendTo: function (node) {
            /*判断是否是dom元素*/
            if(node.nodeType){
                /*如果是使用node元素追加*/
                node.appendChild(this.Dom);
            }else if(node.Dom){
                /*如果传入的DivTag对象 使用node.Dom*/
                node.Dom.appendChild(this.Dom);
            }
            return this;
        },
        add: function (node) {
            /*判断是否是dom元素*/
            if(node.nodeType){
                /*如果是使用node元素追加*/
                this.Dom.appendChild(node);
            }else if(node.Dom){
                /*如果传入的DivTag对象 使用node.Dom*/
                this.Dom.appendChild(node.Dom)
            }
            return this;
        },
        css: function (option) {
            /*判断option是否存在是否为对象*/
            if(!option || typeof option != object) return false;
            for(var key in option){
                /*设置样式*/
                this.Dom.style[key] = option[key];
            }
            return this;
        },
        html: function (str) {
            /*判断str是否为字符串*/
            if(typeof str != string) return false;
            /*添加文本*/
            this.Dom.innerHTML = str;
            return this;
        },
        attr: function (name,value) {
            /*判断value是否存在*/
            if(value){
                /*如果存在设置属性*/
                this.Dom.setAttribute(name,value);
            }else{
                /*如果不存在获取属性*/
                return this.Dom.getAttribute(name);
            }
            return this;
        }

    }
    /*创建标签函数*/
    var createElement = function (tagName) {
        this.Dom = document.createElement(tagName);
    }
    /*设置原型对象*/
    createElement.prototype = element;
    /*创建对象链式调用方法*/
    new createElement(div).appendTo(document.body).html(我是标签).css({
        color:red
    }).attr(class,current);



</script>
</body>
</html>

 

原型继承的小案例

标签:

原文地址:http://www.cnblogs.com/lcf1314/p/5751569.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!