我正在$(window).load()
根据页面加载时更改的各种其他高度来重新调整文本字段的最小高度。我的脚本工作正常,但是,如果页面上的另一个脚本无法加载(由于某种未知原因),$(window).load()
则不会运行。
$(window).load()
即使发生错误(可能使用),有没有办法让运行.error()
,即绕过错误的脚本?
如果这有帮助,我当前的load()
活动脚本如下:
$(window).load(function() {
var imageArea = $('.imageArea').height();
var productDetail = $('.productDetail').height();
var productText = (imageArea - productDetail) - 110; //-110 is the height of another element
$('.productText').css('min-height', productText);
});