我有这个简单的代码,在正文中附加了一个 div,
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src='/libs/jquery/jquery.js'></script>
<script>
$(document).ready( function() {
$('#show').click( function() {
$("<div id='fade'></div>").appendTo('body');
$('#fade').fadeIn('fast');
});
$('#fade').click( function() {
$('#fade').remove('fast');
});
});
</script>
</head>
<body>
<div>
<input type="button" value="show" id="show"/>
</div>
</body>
</html>
css
#fade {
display: none;
background: black;
opacity:0.4;
filter:alpha(opacity=50);
z-index: 1;
position: fixed;
left: 0; top: 0;
width: 100%; height: 100%;
}
#window {
width: 440px;
height: 356px;
background: white;
position:fixed;
left:50%;
top:30%;
margin:-70px 0 0 -245px;
z-index: 2;
}
附加我的 div#fade 工作正常,但我在#fade 上的点击事件不起作用。我看起来很简单,但我不知道为什么不能正常工作。