gpt4 book ai didi

jQuery this 和选择器 $(this :first-child). css ('color' , 'red' );

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

是否可以在 jQuery 中使用 :selector 以及以下内容?

$('.galler_attr').bind('click', function() {
$(this:first-child).css('color', 'red');
});

最佳答案

没有。您正在尝试将函数上下文与字符串混合。

使用this作为context 选择器或调用 $(this) 上的 find() 以在元素的 DOM 范围内搜索。要么

$('.galler_attr').bind('click', function() {
$(this).find(':first-child').css('color', 'red');
});

或者这个(在内部解析为上面的内容):

$('.galler_attr').bind('click', function() {
$(':first-child', this).css('color', 'red');
});

关于jQuery this 和选择器 $(this :first-child). css ('color' , 'red' );,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3324622/

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