ブラウザ ウィンドウのサイズが変更されるたびに、この (または任意の) 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>