如何与仍在 div 元素中的所有图标分开?
基本上,在 div 里面,我有 4 件事要点击。最后一个是为整个 div 元素点击链接。中间元素用于特定的图标点击。但是现在,对于特定的图标点击,我希望点击连接到他们自己的链接。例如,如果单击 github png ,它应该转到 github 链接,但现在 google div 链接会覆盖它。无论我点击什么,我都只连接到一个链接,我不打算这样做。
谢谢
<script type="text/javascript">
$(document).ready(function(){
$(".Apps").click(function(){
window.open($(this).find("a").last().attr("href"));
return false;
});
});
</script>
<div class="Apps">
<p><b>Web Dev Project 3</b><br><i>(coming soon)</i></p>
<a href="https://github.com/" target="blank">
<img src="https://github.com/apple-touch-icon-114.png" width="30" height="30"/></a>
<a href="http://google.com" target="blank">
<img id="logo" src="http://cclub.slc.engr.wisc.edu/images/Under-Construction.gif" width="30" height="30"/></a>
<a href="http://google.com" target="blank"></a>
</div>