gpt4 book ai didi

'this' 内元素的 jquery 选择器

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

我试图获取所选元素中的段落元素以应用某些 css 样式。我尝试过在选择器中的 p 周围加上引号,但这不起作用。

$('#characterSelect div').on('click',function(){
if( !$.trim( $('#attacker').html() ).length )
{
$('#attacker').append(this);
$(this p).css('margin-top','80px');
$(this p).css('margin-right','20px');
}
});

最佳答案

使用 find() 并且由于您正在设计同一元素的样式,因此请使用以下语法:

$(this).find('p').css({
'margin-top':'80px',
'margin-right':'20px'
});

关于 'this' 内元素的 jquery 选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46025805/

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