使用适用于Firefox,WebKit和Internet Explorer的窗口调整大小事件的正确(现代)方法是什么?
你可以打开/关闭两个滚动条吗?
答案 0 :(得分:364)
jQuery有一个built-in method:
$(window).resize(function () { /* do something */ });
为了UI响应,您可以考虑使用setTimeout仅在几毫秒后调用您的代码,如以下示例所示,受this的启发:
function doSomething() {
alert("I'm done resizing for the moment");
};
var resizeTimer;
$(window).resize(function() {
clearTimeout(resizeTimer);
resizeTimer = setTimeout(doSomething, 100);
});
答案 1 :(得分:48)
$(window).bind('resize', function () {
alert('resize');
});
答案 2 :(得分:42)
这是非jQuery方式进入resize事件:
window.addEventListener('resize', function(event){
// do stuff here
});
适用于所有现代浏览器。 不为您节制任何东西。其中Here is an example正在行动中。
答案 3 :(得分:16)
很抱歉打开旧帖子,但如果有人不想使用jQuery,你可以使用它:
function foo(){....};
window.onresize=foo;
答案 4 :(得分:8)
由于您对jQuery持开放态度,this plugin似乎可以解决问题。
答案 5 :(得分:5)
使用jQuery 1.9.1我刚刚发现,虽然技术上相同)*,但这在IE10中无效(但在Firefox中):
// did not work in IE10
$(function() {
$(window).resize(CmsContent.adjustSize);
});
虽然这适用于两种浏览器:
// did work in IE10
$(function() {
$(window).bind('resize', function() {
CmsContent.adjustSize();
};
});
编辑:
)*实际上不技术上相同,如WraithKenny和Henry Blyth的评论中所述和解释的那样。
答案 6 :(得分:4)
jQuery
默认提供$(window).resize()
功能:
<script type="text/javascript">
// function for resize of div/span elements
var $window = $( window ),
$rightPanelData = $( '.rightPanelData' )
$leftPanelData = $( '.leftPanelData' );
//jQuery window resize call/event
$window.resize(function resizeScreen() {
// console.log('window is resizing');
// here I am resizing my div class height
$rightPanelData.css( 'height', $window.height() - 166 );
$leftPanelData.css ( 'height', $window.height() - 236 );
});
</script>
答案 7 :(得分:3)
我认为jQuery插件“jQuery resize event”是最好的解决方案,因为它负责限制事件,使其在所有浏览器中都能正常工作。它类似于安德鲁斯的答案,但更好,因为你可以将resize事件挂钩到特定的元素/选择器以及整个窗口。它为编写干净的代码开辟了新的可能性。
该插件可用here
如果添加大量侦听器会出现性能问题,但对于大多数用例来说,它是完美的。
答案 8 :(得分:0)
我认为你应该对此进一步加以控制:
var disableRes = false;
var refreshWindow = function() {
disableRes = false;
location.reload();
}
var resizeTimer;
if (disableRes == false) {
jQuery(window).resize(function() {
disableRes = true;
clearTimeout(resizeTimer);
resizeTimer = setTimeout(refreshWindow, 1000);
});
}
答案 9 :(得分:0)
希望它能帮助jQuery
首先定义一个函数,如果有现有函数则跳到下一步。
function someFun() {
//use your code
}
浏览器调整大小如此使用。
$(window).on('resize', function () {
someFun(); //call your function.
});
答案 10 :(得分:0)
除了提到的窗口调整大小函数之外,重要的是要理解调整大小事件如果在没有消除事件的情况下使用就会大量激活。
保罗爱尔兰人有一个很好的功能,可以很好地去除调整大小的调用。非常推荐使用。跨浏览器工作。前几天在IE8中进行了测试,一切都很好。
http://www.paulirish.com/2009/throttled-smartresize-jquery-event-handler/
请务必check out the demo查看差异。
这是完整性的功能。
(function($,sr){
// debouncing function from John Hann
// http://unscriptable.com/index.php/2009/03/20/debouncing-javascript-methods/
var debounce = function (func, threshold, execAsap) {
var timeout;
return function debounced () {
var obj = this, args = arguments;
function delayed () {
if (!execAsap)
func.apply(obj, args);
timeout = null;
};
if (timeout)
clearTimeout(timeout);
else if (execAsap)
func.apply(obj, args);
timeout = setTimeout(delayed, threshold || 100);
};
}
// smartresize
jQuery.fn[sr] = function(fn){ return fn ? this.bind('resize', debounce(fn)) : this.trigger(sr); };
})(jQuery,'smartresize');
// usage:
$(window).smartresize(function(){
// code that takes it easy...
});