我有一个随机加载图像的页面。使用 jQuery,我想检查图像src
,并根据 src 包含的内容,修改href
图像的父a
标记。
这是我到目前为止写的,没有运气:
<div class="hero">
<div class="inner">
<a href="#"><img src="http://encompassomaha.com/wp-content/uploads/2013/05/copy-2.png" class="header-image" width="960" height="250" alt="" /></a>
</div>
</div>
jQuery(document).ready(function($) {
$('.hero .inner a img').each(function(i){
var img = $(this),
imgSrc = img.attr('src');
if(imgSrc.contains('copy-2.png')){
img.parent().attr('href', 'http://google.com');
}
}
}