我希望 div2 可以点击。但是它不起作用。我在这里做错了什么?
(阅读评论后代码已更新) 注意:如果我将 div3 设置为可点击,则它可以工作。改回 div2 不起作用。div1 也不起作用。
<!DOCTYPE html>
<html lang="en" >
<head>
<title>Test Code</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<style type="text/css">
.div1 {
position: fixed;
width: 250px;
height: 80%;
border-style: solid;
overflow: hidden;
}
.div2 {
position: fixed;
width: 240px;
height: 50px;
border-style: solid;
overflow: hidden;
}
.div3 {
position: fixed;
width: 100%;
height: 80%;
border-style: solid;
}
</style>
</head>
<body>
<div >
<div >
<div class="div1" >
<div class="div2" id="item" >
This div should be clickable
</div>
</div>
<div class="div3">
</div>
</div>
</div>
<script>
$(document).ready(function() {
$(".div2").click(function() {
window.alert("sometext");
$('.div3').html(function() {
var emph = '<em>' + $('p').length + ' paragraphs!</em>';
return '<p>All new content for ' + emph + '</p>';
});
});
});
</script>
</body>
</html>