gpt4 book ai didi

javascript - jQuery css 方法不接受函数参数

转载 作者:太空宇宙 更新时间:2023-11-03 20:29:01 24 4
gpt4 key购买 nike

所以我为 css 方法创建了一个具有 2 个参数的函数,我运行它但正在读取参数。宽度值在悬停时有效,但我在参数中传递的值正在读取

function growImg(targetClass, imgClass, growPosition, growVal){
$(targetClass).hover(
function(){
$(imgClass).css({'width': '25rem', growPosition : growVal});
},
function(){
$(imgClass).css({'width' : '12em'});
}
)
}

// Calling function here
growImg('.img-profile', '.profile-img', 'top', '25px')

任何帮助都会很棒

最佳答案

您可以使用 computed property names

$(imgClass).css({'width': '25rem', [growPosition] : growVal});

您也可以使用 shorthand property names

function growImg(targetClass, imgClass, top){
$(targetClass).hover(
function(){
$(imgClass).css({'width': '25rem', top});
},
function(){
$(imgClass).css({'width' : '12em'});
}
)
}

// Calling function here
growImg('.img-profile', '.profile-img', '25px')

关于javascript - jQuery css 方法不接受函数参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46819145/

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