function show(n)
{
$('.lightBox').css({
"width":"400px",
"height":"180px"
});
$("#lightBox").css("display", "block"); //这个不知道是干嘛的,如果没用就删掉吧。
//$(".lightBox_wrap").css("display", "block"); //把这句去掉
$('#'+n).css({
"display":"block"; //这里加一句
"width":$('.lightBox').width(),
"height":$('.lightBox').height(),
"top": $(document).scrollTop()+$(window).height()/2-$('.lightBox_wrap').height()/2,
"left":($(window).width()-$('.lightBox').width())/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;
// bgdiv.style.height = $(document).height();
$("#"+bg_div).height($(document).height());
$("#"+bg_div).append("canshu");
};一种是你在函数上给个参数 function ShowDiv(show_div,bg_div,"canshu"){}
一种是用js在某个特定的位置上获取到这个值 比如说 在 获取alt 属性就行了
在你的函数中将 $("#MyDiv").append("你的参数加上");就可以了
给按钮添加一个点击事件,填出一个层,宽高都为100%;
这样就实现了,点击按钮弹出一个层。
以上是如何调用javascript中赋值的函数的详细内容。更多信息请关注PHP中文网其他相关文章!