从另一个div获取链接

时间:2014-05-08 11:05:58

标签: javascript jquery html css

我有

<div class="box box1">
 <div class="content">

  <img a href="http://www.example.com" />
    <img src="https://www.google.ie/images/srpr/logo11w.png"</a>
 </div>
</div>

我想要做的是让整个盒子可以点击。

我已经在StackOverFlow中看了一下,看到了一些很好的例子,但我已经尝试过了,我无法让它们工作。

例如:

$div.next('div.box2').find('a').attr('href', $div.find('a').attr('href'));

如何在jquery

中执行此操作会有任何帮助

2 个答案:

答案 0 :(得分:1)

$(".box").click(function(){
     window.location=$(".whereeveryourelookingfor").find("a").attr("href"); 
     return false;
});

你可以使鼠标指针看起来像href上的那个,使用下面的css

.box{ cursor:pointer; }
  

http://jsfiddle.net/r9Xhf/

答案 1 :(得分:0)

<div class="box box1" style="cursor: pointer">
<div class="content">
 <a href="example">
  <img a href="http://www.example.com" />
    <img src="https://www.google.ie/images/srpr/logo11w.png"</a>
</div></div>

<强> JS

$('.box').click(function(){
    window.location.href = "http://www.example.com";
});