1

我在 jquery 中有一个函数如下

function findMax(){
 $( ".elements" ).each(function( ) {
  if($(this).css('z-index')>max1)
  max1=$(this).css('z-index');
  max1=parseInt(max1);
 });
}

我必须用 Dart 语言实现这个功能。在使用 .each 函数和“this”函数时面临语法问题。

4

1 回答 1

8

相当于 jQuery :

$(".elements").each(function( ) {
  // do something with this being one of elements with a 'elements' class
  // you can access the current element with $(this)
});

在飞镖中:

querySelectorAll('.elements').forEach((Element e) {
  // do something with e being one of elements with a 'elements' class
  // you can access the current element with e
});
于 2013-08-20T12:30:16.777 回答