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句又是什么意思
展开
 我来答
匿名用户
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的方法
// 非常有个性
// 费心劳力,采纳即可。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式