每当调整浏览器窗口的大小时,如何调用此(或任何)JS函数再次运行?

<script type="text/javascript">
 function setEqualHeight(e) {
     var t = 0;
     e.each(function () {
         currentHeight = $(this).height();
         if (currentHeight > t) {
             t = currentHeight
         }
     });
     e.height(t)
 }
 $(document).ready(function () {
     setEqualHeight($(".border"))
 })
</script>

最佳答案

您可以使用窗口onresize事件:

window.onresize = setEqualHeight;

10-04 22:29