这种方法是否适合访问多个 css 方法?
<script>
$("div").click(function () {
var html = ["The clicked div has the following styles:"];
var styleProps = $(this).css( ["width", "height", "color", "background-color"] );
这就是jquery API正在做的事情。上述访问多个属性的方法是否合适?或者是这样吗?
$.each( styleProps, function( prop, value ) {
html.push( prop + ": " + value );
});
$( "#result" ).html( html.join( "<br>" ) );
});