我有
<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
中执行此操作会有任何帮助答案 0 :(得分:1)
$(".box").click(function(){
window.location=$(".whereeveryourelookingfor").find("a").attr("href");
return false;
});
你可以使鼠标指针看起来像href上的那个,使用下面的css
.box{ cursor:pointer; }
答案 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";
});