我有一個div #more,寬度爲100%,高度自動包裹了我的內容。點擊調整窗口高度
我想調整這個div來調整鏈接點擊的窗口高度。
我的腳本幾乎作品,我點擊鏈接,我看到滾動條變得越來越小(證明的窗口大小,但格調整大小僅第一滾動動作,之後......這是爲什麼? (
SCRIPT
$(document).ready(function(){
$("#target").click(function(){
function resizeSection(tag) {
var docHeight = $(window).height(); // Get the height of the browser window
var docWidth = $(window).width(); // Get the width of the browser window
$(tag).css({'height': docHeight + 'px', 'width': docWidth + 'px', 'display': 'block'});
}
$('#more').each(function(){
resizeSection(this); // Call the function and make sure to pass 'this'
});
$(window).resize(function() {
$('#more').each(function(){
resizeSection(this);
});
});
});
});
這是觸發:<div id="target">click</div>