2
$(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));

如果我不迭代“堆栈”元素,它将应用样式,但由于某种原因它会忽略 .css(styles); 在迭代过程中。有任何想法吗?

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

<stack class:center margin:100 color:red background-color:#FFF></stack> 

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

4

1 回答 1

3

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

稍微改变一下函数会得到想要的结果。

newDiv = $("<div class='"+ $.trim(klasses) + "'>" + this.html() + "</div>") 
this.replaceWith(newDiv);
return newDiv;
于 2013-09-13T21:19:44.853 回答