日期:2014-05-16 浏览次数:20356 次
function M_notice(show_div,bg_div){
document.getElementById(show_div).style.display='block';
document.getElementById(bg_div).style.display='block' ;
var bgdiv = document.getElementById(bg_div);
bgdiv.style.width = document.body.scrollWidth;
$("#"+bg_div).height($(document).height());
};
//关闭弹出层
function CloseDiv(show_div,bg_div){
document.getElementById(show_div).style.display='none';
document.getElementById(bg_div).style.display='none';
};
function M_notice(show_div,bg_div){
document.getElementById(show_div).style.display='block';
document.getElementById(bg_div).style.display='block' ;
///////////
var bgdiv = document.getElementById(bg_div);
bgdiv.style.width = Math.max(document.documentElement.scrollWidth, document.body.scrollWidth) + 'px';
bgdiv.style.height = Math.max(document.documentElement.scrollHeight, document.body.scrollHeight) + 'px';
// $("#"+bg_div).height($(document).height());
};