jQuery实现弹出层效果
本文实例为大家分享了jQuery实现弹出层的具体代码,供大家参考,具体内容如下
###jQuery实现弹出层效果
点击弹出层:弹出弹出层
点击阴影:关闭弹出层
点击“关闭”关闭弹出层
整体代码如下:
jQuery弹出层效果 //弹出隐藏层 functionShowDiv(show_div,bg_div){ document.getElementById(show_div).style.display='block'; document.getElementById(bg_div).style.display='block'; varbgdiv=document.getElementById(bg_div); bgdiv.style.width=document.body.scrollWidth; //bgdiv.style.height=$(document).height(); $("#"+bg_div).height($(document).height()); }; //关闭弹出层 functionCloseDiv(show_div,bg_div){ document.getElementById(show_div).style.display='none'; document.getElementById(bg_div).style.display='none'; };