js中 document.getElementById(show_div).style.display='block'; 什么意思
//弹出隐藏层functionShowDiv(show_div,bg_div){document.getElementById(show_div).style.displ...
//弹出隐藏层
function ShowDiv(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';
}
bgdiv.style.width = document.body.scrollWidth;
$("#"+bg_div).height($(document).height());
这2句又是什么意思 展开
function ShowDiv(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';
}
bgdiv.style.width = document.body.scrollWidth;
$("#"+bg_div).height($(document).height());
这2句又是什么意思 展开
1个回答
2015-11-17
展开全部
//定义一个名为ShowDiv的方法,里面有2个参数
function ShowDiv(show_div, bg_div) {
// 设置id是show_div参数值的元素为可见
document.getElementById(show_div).style.display = 'block';
// 设置id是bg_div参数值的元素为可见
document.getElementById(bg_div).style.display = 'block';
// 获取id是bg_div参数值的元素
var bgdiv = document.getElementById(bg_div);
// 设置它的宽度为body元素的宽度
bgdiv.style.width = document.body.scrollWidth;
// 设置id是bg_div参数值的高度为文档的高度
$("#" + bg_div).height($(document).height());
}
//定义一个名为CloseDiv的方法,里面有2个参数
function CloseDiv(show_div, bg_div) {
// 设置id是show_div参数值的元素为不可见
document.getElementById(show_div).style.display = 'none';
// 设置id是bg_div参数值的元素为不可见
document.getElementById(bg_div).style.display = 'none';
}
// 即用了jquery的方法,又用了原始javascript的方法
// 非常有个性
// 费心劳力,采纳即可。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询