<script type="text/javascript">
$(function() {
$('.thelink a').select(function() {
var a_href = $(this).attr("href");
});
$('.calltoActionMoreInformation a').attr('href', a_href);
});
</script>
<div class="thelink" style="height: 250px; position: relative;">
<a title="xxx" href="xxx">
<img alt="tree" src="x" />
</a>
</div>
试图将href从内部放入:
<span class="calltoActionMoreInformation" style="position: absolute; bottom: 0px;">
<a title="" href="--Link here--"></a>
</span>
如果我设置 var a_href = 'http://www.google.co.uk'; 它设置正确,所以问题在于获取.thelink div中唯一链接的href ..
如何将 .thelink a 中的 href 分配给 .calltoActionMoreInformation a ?