gpt4 book ai didi

javascript - 检索子 img src (jQuery)

转载 作者:行者123 更新时间:2023-12-03 21:50:48 24 4
gpt4 key购买 nike

我有多个看起来像这样的 div:

<div><a href="our_work.html?clientid=39">
<img src="filestore/data_logos/39.gif" alt="client logo"/>
</a></div>

如果您单击 div 图层,我会尝试获取图像 src:

$('#carousel div').click(function(event) {
alert($(this).children('img').attr('src'));
});

警报总是返回为空,有什么想法吗?

最佳答案

使用这个:

$('#carousel div').click(function(event) {
alert($(this).find('img').attr('src'));
});

这些图像不是 div 的子级...它们是 <a> 的子级它是 div 的子级,需要再向下一级。

关于javascript - 检索子 img src (jQuery),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2186096/

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