0

该脚本适用于 jQuery 1.9,但不适用于 1.8。如何将此脚本转换为 jQuery 1.8?

在 jsfiddle 上不工作的演示

jsfiddle 上的工作演示

HTML

<div id="container">
    <div id="c1" class="aaa" style="text-align:right; color:red top:100px; ">child 1</div>
    <div id="c2" class="aaa" style="text-align:left; top:200px; ">child 2</div>
</div>

jQuery 脚本

$("#container").children().each( function () {
    alert("element ID = " + $(this).attr('id'));
    var styleProps = $(this).css(["width", 
                                  "height", 
                                  "color", 
                                  "background-color", 
                                  "text-align", 
                                  "left", 
                                  "top", 
                                  "right", 
                                  "bottom"]);
    $.each(styleProps, function (prop, value) {
        alert(prop + " = " + value);
    });
});
4

1 回答 1

1

css接受数组的函数直到1.9才实现。

如果您使用的是 1.8(一次循环一个值),您可能必须手动完成。

var styleNames = ["width", "height", "color", ...etc... ];

var i;
var $elem = jQuery(this);
for (i = 0; i < styleNames.length; ++i) {
    alert(styleNames[i] + " = " + $elem.css(styleNames[i]));
}
于 2013-07-22T21:37:41.397 回答