我有这个标记来使整个 div 可点击。
<div class="myBox">
<div class="two">
<h2> Title</h2>
<p> This is the description</p>
<a class="some-button-class" href="http://www.google.com/">check here</a>
</div>
</div>
而这个 JS
$(".myBox").click(function(){
window.location=$(this).find("a").attr("href");
return false;
});
而这个CSS
.myBox { cursor:pointer;width:200px;height:200px;}
h2 {font-size:28px;}
p { color:#fff }
.two {
background: #999;
padding:50px;
}
但它不起作用。为什么?!
JSfiddle http://jsfiddle.net/ryRnU/16/