gpt4 book ai didi

dart - 如何使用每个功能,从jquery到Dart Language?

转载 作者:行者123 更新时间:2023-12-03 03:08:01 28 4
gpt4 key购买 nike

我在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
});

关于dart - 如何使用每个功能,从jquery到Dart Language?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18332388/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com