<script> $(document).ready(function(){ window.onresize=function(){ //第一种写法 $(".mapDiv").height($(".mapDiv").width()*0.31); //第二种写法 $(".mapDiv").css("height",$(".mapDiv").width()*0.31); //第三种写法 $(".mapDiv").css("height",$(".mapDiv").width()*0.31+"px"); } }); </script>