以下のようにjqueryに関数があります
function findMax(){
$( ".elements" ).each(function( ) {
if($(this).css('z-index')>max1)
max1=$(this).css('z-index');
max1=parseInt(max1);
});
}
この関数を Dart 言語で実装する必要があります。.each 関数と 'this' 関数を使用する際の構文の問題に直面しています。
以下のようにjqueryに関数があります
function findMax(){
$( ".elements" ).each(function( ) {
if($(this).css('z-index')>max1)
max1=$(this).css('z-index');
max1=parseInt(max1);
});
}
この関数を Dart 言語で実装する必要があります。.each 関数と 'this' 関数を使用する際の構文の問題に直面しています。
jQuery に相当するもの:
$(".elements").each(function( ) {
// do something with this being one of elements with a 'elements' class
// you can access the current element with $(this)
});
Dartにあります:
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
});