<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.one{width: 500px;height: 500px;border: 1px solid #000;display: none}
.two{width: 500px;height: 500px;border: 1px solid red;display: none}
</style>
</head>
<body>
<!--筛选 开始-->
<div class="filter-box fr">
<select class="fl" >
<option value="week">近一周</option>
<option value="month">近一个月</option>
</select>
<div class="clear"></div>
</div>
<!--筛选 结束-->
<div class="one"></div>
<div class='two'></div>
<script src="jquery.js"></script>
<script>
$(".filter-box select").change(function (){
var val = $(this).val();
if(val == "week"){
$('.one').show();
$('.two').hide()
}else if(val == "month"){
$('.two').show();
$('.one').hide();
}
})
</script>
</body>
</html>