如何获取div class .image1
<div class="image1">
<a href="/images/productA.jpg"> </a>
</div>
并将其添加到图片src
此处......
<ul class="example">
<li class="GalleryImage1"> <img src="" > </li>
</ul>
答案 0 :(得分:4)
你可以试试这个:
var href = $('.image1 a').attr('href');
//if you want the href to all img in the ul
$('.example li img').attr('src',href);
//if you want the href only to this li
$('.example .GalleryImage1 img').attr('src',href);
答案 1 :(得分:1)
使用jQuery的.attr
方法。
找到href的选择器,执行my_href = $(your_selector).attr("href")
,然后使用src
更改img
元素上的$(img_selector).attr("src", my_href)
attr