gpt4 book ai didi

javascript - 查找已点击标签上最近的图像

转载 作者:行者123 更新时间:2023-12-02 15:28:11 26 4
gpt4 key购买 nike

我有这个列表,我想更改单击的标签上的图像。我怎样才能做到这一点???

 <ul>
<li class='Root'>
<img src='icon_plus.png' /><input type='checkbox' /><a href='#'><span>sth</span></a>
</li>
<li class='Root'>
<img src='icon_plus.png' /><input type='checkbox' /><a href='#'><span>sth</span></a>
</li>
</ul>
<script>
$('.Root a').click(function () {
//How Can I do that????
});
</script>

最佳答案

使用.siblings() :

$('.Root a').click(function () {
var $img = $(this).siblings('img');
$img.attr('src', 'newimage.png')
});

    $('.Root a').click(function() {
var $img = $(this).siblings('img');
$img.attr('src', 'https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png')
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<ul>
<li class='Root'>
<img src='icon_plus.png' />
<input type='checkbox' /><a href='#'><span>sth</span></a>
</li>
<li class='Root'>
<img src='icon_pluss.png' />
<input type='checkbox' /><a href='#'><span>sth</span></a>
</li>
</ul>

关于javascript - 查找已点击标签上最近的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33529209/

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