Jquery不会在循环中分配样式

时间:2013-09-13 21:08:36

标签: jquery css

$(document).ready(function(){
  $("stack").each(function(){
    styles = $(this).parse_attr();
    $(this).convert_el().css(styles);
  });
});
(function($){
  $.fn.parse_attr = function(){
    if(this.length === 0 ){
        return null;
    }
    tag_types = ["class","id","name"];
    css_hash = {};
    $.each(this[0].attributes,function(){
        attrib = this.name.split(":")
        if( !($.inArray(attrib[0],tag_types) >= 0) ){
            if($.isNumeric(attrib[1])){
                css_hash[attrib[0]] = attrib[1] + "px";
            }else{
                css_hash[attrib[0]] = attrib[1];
            }
        }
    });
    return css_hash;
};
}(jQuery));

(function($){
$.fn.convert_el = function(){
    if(this.length === 0 ){
        return null;
    }
    klasses = this.prop("tagName").toLowerCase();
    tag_types = ["class","id","name"];
    $.each(this[0].attributes,function(){
        attrib = this.name.split(":")
        if($.inArray(attrib[0],tag_types) >= 0 ){
            klasses = klasses + " " + attrib[1].replace(/"/g,"");
        }
    });
    this.replaceWith($("<div class='"+ $.trim(klasses) + "'>" + this.html() + "</div>"));
    return this;
}
}(jQuery));

如果我不迭代“stack”元素,它将应用样式但由于某种原因它忽略.css(样式);在迭代期间。有什么想法吗?

另外请不要问我为什么要尝试这样做我只是尝试通过jquery传递不存在的html标签以使用

之类的东西动态开发网页的概念性想法
<stack class:center margin:100 color:red background-color:#FFF></stack> 

然后它应该将这些值解析为样式并应用它。

1 个答案:

答案 0 :(得分:3)

我猜问题就是替换。原始元素已删除,因此您无法更改其样式,但$.fn.convert_el仍会返回它。

稍微改变一下这个功能可以得到理想的结果。

newDiv = $("<div class='"+ $.trim(klasses) + "'>" + this.html() + "</div>") 
this.replaceWith(newDiv);
return newDiv;