私はjsに比較的慣れていないので、一生この関数の問題を理解できません。ページのサイズ変更でdivの幅を変更しようとしています。何か関係がある場合に備えて、cssも含まれています。
<div id="lowerPattern"></div>
<script>
$( window ).bind("resize", function() {
// Change the width of the div
$("#lowerPattern").css('width', '300px');
});
</script>
/*CSS*/
#lowerPattern {
height: 99px;
width: 10px;
background-color: green;
/*Keeps div centered on resize*/
position: absolute;
left: 50%;
margin-left: -300px;
}