jQueryまたはjsがブラウザウィンドウのサイズを変更したときにページを自動的にリフレッシュ
2877 ワード
$(window).resize(
function
(){
alert(
" !"
);
location.reload()
// !
});
//
$(window).resize(
function
() {
//
alert($(window).height());
//
alert($(document).height());
//
alert($(document.body).height());
// body
alert($(document.body).outerHeight(
true
));
// body border padding margin
});