gpt4 book ai didi

javascript - 如何使用 jQuery 淡出?

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

我在 javascript 中有这个函数:

function hid(id) {
var x = document.getElementById("desc_div" + id).style.display = "none";
}

我希望通过使用 jQuery 来使用淡出效果而不是 display = "none"

我该怎么做?

最佳答案

 function hid(id){
$("#desc_div"+id).fadeOut("slow");
}

参见 .fadeOut() .

关于javascript - 如何使用 jQuery 淡出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9744105/

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