gpt4 book ai didi

javascript - 普通( Vanilla )javascript 中的 jQuery.each() 函数

转载 作者:行者123 更新时间:2023-11-30 19:54:54 25 4
gpt4 key购买 nike

<分区>

$.fn.slideUpTransition = function() {
return this.each(function() {
var $el = $(this);
$el.css("max-height", "0");
$el.addClass("height-transition-hidden");
});
};

在 jQuery 中,this.each 将遍历所有匹配的元素,然后应用该函数。此处 this 作为全局对象保存 div 的类选择器。

jQuery.fn.init [div.custom-dropdown-body.height-transition, prevObject: jQuery.fn.init(1)]

我们如何使用纯 javascript 实现同样的效果?我尝试执行以下操作但无法达到预期效果:

var obj = this;
for(var i=0; i< obj.length; i++){
// codes
};
return this

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