我如何编写以下所有浏览器都支持的代码?因为似乎 IE8 不支持 forEach-Function ......
digits.forEach( function( value, index ) {
// create a span with initial conditions
var span = $( '<span>', {
'class': 'digit0',
'data': {
'current': 0,
'goal' : value
}
} );
// append span to the div#number
span.appendTo( $( 'div#number' ) );
// call countUp after interval multiplied by the index of this span
setTimeout( function() { countUp.call( span ); }, index * interval );
} );
在此处查看完整的代码:http : //jsfiddle.net/bBadM/(它不适用于所有浏览器)提前致谢。
问候,